#
-# This file was automatically generated by tmake at 14:41, 2000/01/22
+# This file was automatically generated by tmake at 20:20, 2000/01/22
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
#
UNIX_HEADERS = \
unix/execute.h \
- unix/fontutil.h
+ unix/fontutil.h \
+ unix/gsockunx.h \
+ unix/mimetype.h
GENERIC_HEADERS = \
generic/calctrl.h \
longlong.o \
memory.o \
menucmn.o \
- mimetype.o \
+ mimecmn.o \
module.o \
mstream.o \
object.o \
longlong.d \
memory.d \
menucmn.d \
- mimetype.d \
+ mimecmn.d \
module.d \
mstream.d \
object.d \
longlong.o \
memory.o \
menucmn.o \
- mimetype.o \
+ mimecmn.o \
module.o \
mstream.o \
object.o \
longlong.d \
memory.d \
menucmn.d \
- mimetype.d \
+ mimecmn.d \
module.d \
mstream.d \
object.d \
longlong.o \
memory.o \
menucmn.o \
- mimetype.o \
+ mimecmn.o \
module.o \
mstream.o \
object.o \
longlong.d \
memory.d \
menucmn.d \
- mimetype.d \
+ mimecmn.d \
module.d \
mstream.d \
object.d \
longlong.o \
memory.o \
menucmn.o \
- mimetype.o \
+ mimecmn.o \
module.o \
mstream.o \
object.o \
longlong.d \
memory.d \
menucmn.d \
- mimetype.d \
+ mimecmn.d \
module.d \
mstream.d \
object.d \
list.o \
log.o \
longlong.o \
- mimetype.o \
+ mimecmn.o \
module.o \
object.o \
process.o \
wfstream.o \
wxchar.o \
dir.o \
+ mimetype.o \
threadpsx.o \
utilsunx.o
list.d \
log.d \
longlong.d \
- mimetype.d \
+ mimecmn.d \
module.d \
object.d \
process.d \
wfstream.d \
wxchar.d \
dir.d \
+ mimetype.d \
threadpsx.d \
utilsunx.d
fontenum.o \
fontutil.o \
gsocket.o \
+ mimetype.o \
threadpsx.o \
utilsunx.o
fontenum.d \
fontutil.d \
gsocket.d \
+ mimetype.d \
threadpsx.d \
utilsunx.d
longlong.cpp C B
memory.cpp C
menucmn.cpp C
-mimetype.cpp C 32,B
+mimecmn.cpp C 32,B
module.cpp C B
mstream.cpp C
object.cpp C B
threadpsx.cpp U B
utilsunx.cpp U B
gsocket.c U
+mimetype.cpp U B
gsockgtk.c R
win_gtk.c R
fontutil.h S
execute.h S
+mimetype.h S
+gsockunx.h S
file.h P
ftp.h P
void CheckListBoxFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
- wxMessageBox(_T("Demo of wxCheckListBox control\n"
+ wxMessageBox(wxT("Demo of wxCheckListBox control\n"
"© Vadim Zeitlin 1998-1999"),
- _T("About wxCheckListBox"),
+ wxT("About wxCheckListBox"),
wxICON_INFORMATION, this);
}
void CheckListBoxFrame::OnListboxSelect(wxCommandEvent& event)
{
int nSel = event.GetSelection();
- wxLogStatus(this, _T("item %d selected (%schecked)"), nSel,
- m_pListBox->IsChecked(nSel) ? _T("") : _T("not "));
+ wxLogStatus(this, wxT("Item %d selected (%schecked)"), nSel,
+ m_pListBox->IsChecked(nSel) ? _T("") : wxT("not "));
}
void CheckListBoxFrame::OnListboxDblClick(wxCommandEvent& WXUNUSED(event))
{
wxString strSelection;
- strSelection.sprintf(_T("item %d double clicked"), m_pListBox->GetSelection());
- wxMessageDialog dialog(this, strSelection);
+ strSelection.sprintf(wxT("Item %d double clicked"), m_pListBox->GetSelection());
+ wxMessageDialog dialog(this, strSelection, wxT("wxCheckListBox message"), wxICON_INFORMATION);
dialog.ShowModal();
}
{
unsigned int nItem = event.GetInt();
- wxLogStatus(this, _T("item %d was %schecked"), nItem,
- m_pListBox->IsChecked(nItem) ? _T("") : _T("un"));
+ wxLogStatus(this, wxT("item %d was %schecked"), nItem,
+ m_pListBox->IsChecked(nItem) ? wxT("") : wxT("un"));
}
void CheckListBoxFrame::OnButtonUp(wxCommandEvent& WXUNUSED(event))
int positionNew = up ? selection - 1 : selection + 2;
if ( positionNew < 0 || positionNew > m_pListBox->GetCount() )
{
- wxLogStatus(this, _T("Can't move this item %s"), up ? _T("up") : _T("down"));
+ wxLogStatus(this, wxT("Can't move this item %s"), up ? wxT("up") : wxT("down"));
}
else
{
AdjustColour(selection);
AdjustColour(selectionNew);
- wxLogStatus(this, _T("Item moved %s"), up ? _T("up") : _T("down"));
+ wxLogStatus(this, wxT("Item moved %s"), up ? wxT("up") : wxT("down"));
}
}
else
{
- wxLogStatus(this, _T("Please select an item"));
+ wxLogStatus(this, wxT("Please select an item"));
}
}
top_srcdir = @top_srcdir@
top_builddir = ../..
-program_dir = samples/nettest
+program_dir = samples/dialup
PROGRAM=nettest
frame->SetStatusText(wxString::Format(_T("%dx%d"), w, h));
frame->SetClientSize(w > 100 ? 100 : w, h > 100 ? 100 : h);
- frame->Show();
+ frame->Show(TRUE);
}
#ifdef USE_METAFILES
#endif
// set the frame icon
+#ifndef __WXGTK__
SetIcon(wxICON(mondrian));
+#endif
// create a menu bar
wxMenu *menuFile = new wxMenu(_T(""), wxMENU_TEAROFF);
#if wxUSE_STATUSBAR
// create a status bar just for fun (by default with 1 pane only)
- CreateStatusBar(2);
+ CreateStatusBar();
SetStatusText(_T("Welcome to wxWindows!"));
#endif // wxUSE_STATUSBAR
}
SetStatusText("Welcome to wxWindows font demo!");
}
+// --------------------------------------------------------
-// event handlers
-void MyFrame::OnEnumerateEncodings(wxCommandEvent& WXUNUSED(event))
+class MyEncodingEnumerator : public wxFontEnumerator
{
- class MyEncodingEnumerator : public wxFontEnumerator
- {
- public:
- MyEncodingEnumerator() { m_n = 0; }
-
- const wxString& GetText() const { return m_text; }
+public:
+ MyEncodingEnumerator()
+ { m_n = 0; }
- protected:
- virtual bool OnFontEncoding(const wxString& facename,
- const wxString& encoding)
- {
- wxString text;
- text.Printf("Encoding %d: %s (available in facename '%s')\n",
- ++m_n, encoding.c_str(), facename.c_str());
- m_text += text;
+ const wxString& GetText() const
+ { return m_text; }
- return TRUE;
- }
+protected:
+ virtual bool OnFontEncoding(const wxString& facename,
+ const wxString& encoding)
+ {
+ wxString text;
+ text.Printf("Encoding %d: %s (available in facename '%s')\n",
+ ++m_n, encoding.c_str(), facename.c_str());
+ m_text += text;
+ return TRUE;
+ }
- private:
- size_t m_n;
+private:
+ size_t m_n;
+ wxString m_text;
+};
- wxString m_text;
- } fontEnumerator;
+void MyFrame::OnEnumerateEncodings(wxCommandEvent& WXUNUSED(event))
+{
+ MyEncodingEnumerator fontEnumerator;
fontEnumerator.EnumerateEncodings();
fontEnumerator.GetText().c_str());
}
-bool MyFrame::DoEnumerateFamilies(bool fixedWidthOnly,
- wxFontEncoding encoding,
- bool silent)
-{
- class MyFontEnumerator : public wxFontEnumerator
- {
- public:
- bool GotAny() const { return !m_facenames.IsEmpty(); }
+// -------------------------------------------------------------
- const wxArrayString& GetFacenames() const { return m_facenames; }
+class MyFontEnumerator : public wxFontEnumerator
+{
+public:
+ bool GotAny() const
+ { return !m_facenames.IsEmpty(); }
- protected:
- virtual bool OnFacename(const wxString& facename)
- {
- m_facenames.Add(facename);
+ const wxArrayString& GetFacenames() const
+ { return m_facenames; }
- return TRUE;
- }
+protected:
+ virtual bool OnFacename(const wxString& facename)
+ {
+ m_facenames.Add(facename);
+ return TRUE;
+ }
private:
wxArrayString m_facenames;
- } fontEnumerator;
+} fontEnumerator;
+
+bool MyFrame::DoEnumerateFamilies(bool fixedWidthOnly,
+ wxFontEncoding encoding,
+ bool silent)
+{
+ MyFontEnumerator fontEnumerator;
fontEnumerator.EnumerateFacenames(encoding, fixedWidthOnly);