4 * Author: Karsten Ballüder
6 * Copyright: (C) 1998, Karsten Ballüder <Ballueder@usa.net>
11 #pragma implementation "wxLayout.h"
14 #include "wx/wxprec.h"
20 #include "wx/textfile.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 enum ids
{ ID_ADD_SAMPLE
= 1, ID_CLEAR
, ID_PRINT
,
37 ID_PRINT_SETUP
, ID_PAGE_SETUP
, ID_PREVIEW
, ID_PRINT_PS
,
38 ID_PRINT_SETUP_PS
, ID_PAGE_SETUP_PS
,ID_PREVIEW_PS
,
39 ID_WRAP
, ID_NOWRAP
, ID_PASTE
, ID_COPY
, ID_CUT
, ID_FIND
,
40 ID_WXLAYOUT_DEBUG
, ID_QUIT
, ID_CLICK
, ID_HTML
, ID_TEXT
,
41 ID_TEST
, ID_LONG_TEST
};
44 IMPLEMENT_DYNAMIC_CLASS( MyFrame
, wxFrame
)
46 BEGIN_EVENT_TABLE(MyFrame
,wxFrame
)
47 EVT_MENU(ID_PRINT
, MyFrame::OnPrint
)
48 EVT_MENU(ID_PREVIEW
, MyFrame::OnPrintPreview
)
49 EVT_MENU(ID_PRINT_SETUP
, MyFrame::OnPrintSetup
)
50 EVT_MENU(ID_PAGE_SETUP
, MyFrame::OnPageSetup
)
51 EVT_MENU(ID_PRINT_PS
, MyFrame::OnPrintPS
)
52 EVT_MENU(ID_PREVIEW_PS
, MyFrame::OnPrintPreviewPS
)
53 EVT_MENU(ID_PRINT_SETUP_PS
, MyFrame::OnPrintSetupPS
)
54 EVT_MENU(ID_PAGE_SETUP_PS
, MyFrame::OnPageSetupPS
)
55 EVT_MENU (-1, MyFrame::OnCommand
)
56 EVT_COMMAND (-1,-1, MyFrame::OnCommand
)
57 EVT_CHAR ( wxLayoutWindow::OnChar
)
61 MyFrame::MyFrame(void) :
62 wxFrame( (wxFrame
*) NULL
, -1, (char *) "wxLayout", wxPoint(20,20), wxSize(600,360) )
66 SetStatusText( "wxLayout by Karsten Ballüder." );
68 wxMenuBar
*menu_bar
= new wxMenuBar();
70 wxMenu
*file_menu
= new wxMenu
;
71 file_menu
->Append(ID_PRINT
, "&Print...", "Print");
72 file_menu
->Append(ID_PRINT_SETUP
, "Print &Setup...","Setup printer properties");
73 file_menu
->Append(ID_PAGE_SETUP
, "Page Set&up...", "Page setup");
74 file_menu
->Append(ID_PREVIEW
, "Print Pre&view", "Preview");
76 file_menu
->AppendSeparator();
77 file_menu
->Append(ID_PRINT_PS
, "Print PostScript...", "Print (PostScript)");
78 file_menu
->Append(ID_PRINT_SETUP_PS
, "Print Setup PostScript...", "Setup printer properties (PostScript)");
79 file_menu
->Append(ID_PAGE_SETUP_PS
, "Page Setup PostScript...", "Page setup (PostScript)");
80 file_menu
->Append(ID_PREVIEW_PS
, "Print Preview PostScript", "Preview (PostScript)");
82 file_menu
->AppendSeparator();
83 file_menu
->Append( ID_TEXT
, "Export Text");
84 file_menu
->Append( ID_HTML
, "Export HTML");
85 file_menu
->Append( ID_QUIT
, "Exit");
86 menu_bar
->Append(file_menu
, "File" );
88 wxMenu
*edit_menu
= new wxMenu
;
89 edit_menu
->Append( ID_CLEAR
, "Clear");
90 edit_menu
->Append( ID_ADD_SAMPLE
, "Example");
91 edit_menu
->Append( ID_LONG_TEST
, "Add many lines");
92 edit_menu
->AppendSeparator();
93 edit_menu
->Append(ID_WRAP
, "Wrap mode", "Activate wrapping at pixel 200.");
94 edit_menu
->Append(ID_NOWRAP
, "No-wrap mode", "Deactivate wrapping.");
95 edit_menu
->AppendSeparator();
96 edit_menu
->Append(ID_COPY
, "Copy", "Copy text to clipboard.");
97 edit_menu
->Append(ID_CUT
, "Cut", "Cut text to clipboard.");
98 edit_menu
->Append(ID_PASTE
,"Paste", "Paste text from clipboard.");
99 edit_menu
->Append(ID_FIND
, "Find", "Find text.");
100 menu_bar
->Append(edit_menu
, "Edit" );
103 menu_bar
->Show( TRUE
);
106 SetMenuBar( menu_bar
);
108 m_lwin
= new wxLayoutWindow(this);
109 m_lwin
->SetStatusBar(GetStatusBar(), 0, 1);
110 m_lwin
->SetMouseTracking(true);
111 m_lwin
->SetEditable(true);
112 m_lwin
->SetWrapMargin(40);
113 m_lwin
->Clear(wxROMAN
,16,wxNORMAL
,wxNORMAL
, false);
118 MyFrame::AddSampleText(wxLayoutList
*llist
)
120 llist
->Clear(wxSWISS
,16,wxNORMAL
,wxNORMAL
, false);
121 llist
->SetFont(-1,-1,-1,-1,-1,"blue");
122 llist
->Insert("blue");
123 llist
->SetFont(-1,-1,-1,-1,-1,"black");
124 llist
->Insert("The quick brown fox jumps over the lazy dog.");
127 llist
->SetFont(wxROMAN
,16,wxNORMAL
,wxNORMAL
, false);
131 llist
->SetFont(wxROMAN
);
132 llist
->Insert("The quick brown fox jumps over the lazy dog.");
134 llist
->Insert("Hello ");
135 llist
->Insert(new wxLayoutObjectIcon(new wxICON(Micon
)));
136 llist
->SetFontWeight(wxBOLD
);
137 llist
->Insert("World! ");
138 llist
->SetFontWeight(wxNORMAL
);
139 llist
->Insert("The quick brown fox jumps...");
141 llist
->Insert("over the lazy dog.");
142 llist
->SetFont(-1,-1,-1,-1,true);
143 llist
->Insert("underlined");
144 llist
->SetFont(-1,-1,-1,-1,false);
145 llist
->SetFont(wxROMAN
);
146 llist
->Insert("This is ");
147 llist
->SetFont(-1,-1,-1,wxBOLD
); llist
->Insert("BOLD "); llist
->SetFont(-1,-1,-1,wxNORMAL
);
148 llist
->Insert("and ");
149 llist
->SetFont(-1,-1,wxITALIC
);
150 llist
->Insert("italics ");
151 llist
->SetFont(-1,-1,wxNORMAL
);
154 llist
->Insert("and ");
155 llist
->SetFont(-1,-1,wxSLANT
);
156 llist
->Insert("slanted");
157 llist
->SetFont(-1,-1,wxNORMAL
);
158 llist
->Insert(" text.");
160 llist
->Insert("and ");
161 llist
->SetFont(-1,-1,-1,-1,-1,"blue");
162 llist
->Insert("blue");
163 llist
->SetFont(-1,-1,-1,-1,-1,"black");
164 llist
->Insert(" and ");
165 llist
->SetFont(-1,-1,-1,-1,-1,"green","black");
166 llist
->Insert("green on black");
167 llist
->SetFont(-1,-1,-1,-1,-1,"black","white");
168 llist
->Insert(" text.");
171 llist
->SetFont(-1,-1,wxSLANT
);
172 llist
->Insert("Slanted");
173 llist
->SetFont(-1,-1,wxNORMAL
);
174 llist
->Insert(" and normal text and ");
175 llist
->SetFont(-1,-1,wxSLANT
);
176 llist
->Insert("slanted");
177 llist
->SetFont(-1,-1,wxNORMAL
);
178 llist
->Insert(" again.");
181 // add some more text for testing:
182 llist
->Insert("And here the source for the test program:");
184 llist
->SetFont(wxTELETYPE
,16);
186 FILE *in
= fopen("wxLayout.cpp","r");
191 fgets(buffer
,1024,in
);
194 llist
->Insert(buffer
);
198 llist
->MoveCursorTo(wxPoint(0,0));
206 m_lwin
->Clear(wxROMAN
,16,wxNORMAL
,wxNORMAL
, false);
210 void MyFrame::OnCommand( wxCommandEvent
&event
)
212 switch (event
.GetId())
220 wxLayoutPrintout
printout(m_lwin
->GetLayoutList(),_("M: Printout"));
221 if (! printer
.Print(this, &printout
, TRUE
))
223 _("There was a problem with printing the message:\n"
224 "perhaps your current printer is not set up correctly?"),
225 _("Printing"), wxOK
);
230 m_lwin
->SetWrapMargin(event
.GetId() == ID_NOWRAP
? 0 : 40);
233 AddSampleText(m_lwin
->GetLayoutList());
239 cerr
<< "Received click event." << endl
;
243 m_lwin
->Refresh(FALSE
);
247 m_lwin
->Refresh(FALSE
);
251 m_lwin
->Refresh(FALSE
);
254 m_lwin
->Find("void");
255 m_lwin
->Refresh(FALSE
);
259 wxLayoutExportObject
*export
;
260 wxLayoutExportStatus
status(m_lwin
->GetLayoutList());
262 while((export
= wxLayoutExport( &status
,
263 WXLO_EXPORT_AS_HTML
)) != NULL
)
265 if(export
->type
== WXLO_EXPORT_HTML
)
266 cout
<< *(export
->content
.text
);
268 cout
<< "<!--UNKNOWN OBJECT>";
275 wxLayoutExportObject
*export
;
276 wxLayoutExportStatus
status(m_lwin
->GetLayoutList());
278 while((export
= wxLayoutExport( &status
, WXLO_EXPORT_AS_TEXT
)) != NULL
)
280 if(export
->type
== WXLO_EXPORT_TEXT
)
281 cout
<< *(export
->content
.text
);
283 cout
<< "<!--UNKNOWN OBJECT>";
291 wxLayoutList
*llist
= m_lwin
->GetLayoutList();
292 for(int i
= 1; i
< 5000; i
++)
294 line
.Printf("This is line number %d.", i
);
298 llist
->MoveCursorTo(wxPoint(0,0));
306 void MyFrame::OnPrint(wxCommandEvent
& WXUNUSED(event
))
309 wxGetApp().SetPrintMode(wxPRINT_WINDOWS
);
311 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
314 wxLayoutPrintout
printout( m_lwin
->GetLayoutList(),"Printout from wxLayout");
315 if (! printer
.Print(this, &printout
, TRUE
))
317 "There was a problem printing.\nPerhaps your current printer is not set correctly?",
321 void MyFrame::OnPrintPS(wxCommandEvent
& WXUNUSED(event
))
323 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
326 wxPostScriptPrinter printer
;
327 wxLayoutPrintout
printout( m_lwin
->GetLayoutList(),"My printout");
328 printer
.Print(this, &printout
, TRUE
);
332 void MyFrame::OnPrintPreview(wxCommandEvent
& WXUNUSED(event
))
335 wxGetApp().SetPrintMode(wxPRINT_WINDOWS
);
337 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
339 wxPrintData printData
;
341 // Pass two printout objects: for preview, and possible printing.
342 wxPrintPreview
*preview
= new wxPrintPreview(new
344 m_lwin
->GetLayoutList()), new wxLayoutPrintout( m_lwin
->GetLayoutList()), & printData
);
348 wxMessageBox("There was a problem previewing.\nPerhaps your current printer is not set correctly?", "Previewing", wxOK
);
352 wxPreviewFrame
*frame
= new wxPreviewFrame(preview
, this, "Demo Print Preview", wxPoint(100, 100), wxSize(600, 650));
353 frame
->Centre(wxBOTH
);
358 void MyFrame::OnPrintPreviewPS(wxCommandEvent
& WXUNUSED(event
))
360 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
362 wxPrintData printData
;
364 // Pass two printout objects: for preview, and possible printing.
365 wxPrintPreview
*preview
= new wxPrintPreview(new wxLayoutPrintout( m_lwin
->GetLayoutList()), new wxLayoutPrintout( m_lwin
->GetLayoutList()), & printData
);
366 wxPreviewFrame
*frame
= new wxPreviewFrame(preview
, this, "Demo Print Preview", wxPoint(100, 100), wxSize(600, 650));
367 frame
->Centre(wxBOTH
);
372 void MyFrame::OnPrintSetup(wxCommandEvent
& WXUNUSED(event
))
375 wxGetApp().SetPrintMode(wxPRINT_WINDOWS
);
377 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
379 wxPrintDialog
printerDialog(this, & m_PrintData
);
380 printerDialog
.ShowModal();
383 void MyFrame::OnPageSetup(wxCommandEvent
& WXUNUSED(event
))
386 wxGetApp().SetPrintMode(wxPRINT_WINDOWS
);
388 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
390 wxPageSetupData data
;
393 wxPageSetupDialog
pageSetupDialog(this, & data
);
395 wxGenericPageSetupDialog
pageSetupDialog(this, & data
);
397 pageSetupDialog
.ShowModal();
399 data
= pageSetupDialog
.GetPageSetupData();
402 void MyFrame::OnPrintSetupPS(wxCommandEvent
& WXUNUSED(event
))
404 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
409 wxPrintDialog
printerDialog(this, & data
);
411 wxGenericPrintDialog
printerDialog(this, & data
);
413 printerDialog
.ShowModal();
416 void MyFrame::OnPageSetupPS(wxCommandEvent
& WXUNUSED(event
))
418 wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT
);
420 wxPageSetupData data
;
422 wxPageSetupDialog
pageSetupDialog(this, & data
);
424 wxGenericPageSetupDialog
pageSetupDialog(this, & data
);
426 pageSetupDialog
.ShowModal();
430 //-----------------------------------------------------------------------------
432 //-----------------------------------------------------------------------------
439 bool MyApp::OnInit(void)
441 wxFrame
*frame
= new MyFrame();
443 // wxSetAFMPath("/usr/local/src/wxWindows/misc/afm/");