utils/*.txt
utils/make*
-
-utils/xpmshow/src/makefile*
-utils/xpmshow/src/*.cpp
-utils/xpmshow/src/*.h
-utils/xpmshow/src/*.def
-utils/xpmshow/src/*.rc
-utils/xpmshow/src/*.xpm
-utils/xpmshow/src/*.bmp
-utils/xpmshow/src/*.ico
-
-utils/wxhelp/src/*.cpp
-utils/wxhelp/src/*.h
-utils/wxhelp/src/makefile*
-utils/wxhelp/src/*.xbm
-utils/wxhelp/src/*.xpm
-utils/wxhelp/src/*.txt
-utils/wxhelp/src/*.ico
-utils/wxhelp/src/*.def
-utils/wxhelp/src/*.rc
+utils/configure
+utils/configure.in
utils/wxgraph/src/*.cpp
utils/wxgraph/src/*.c
utils/serialize/*.xpm
utils/serialize/*.txt
+utils/hhp2cache/*.h
+utils/hhp2cache/*.cpp
+utils/hhp2cache/*.def
+utils/hhp2cache/*.rc
+utils/hhp2cache/makefile*
+utils/hhp2cache/*.xbm
+utils/hhp2cache/*.xpm
+utils/hhp2cache/*.txt
+
+utils/makegen/*.h
+utils/makegen/*.cpp
+utils/makegen/*.def
+utils/makegen/*.rc
+utils/makegen/makefile*
+utils/makegen/*.xbm
+utils/makegen/*.xpm
+utils/makegen/*.txt
+utils/makegen/templates/make*
+
utils/dialoged/Makefile
utils/dialoged/src/bitmaps/*.xbm
utils/dialoged/src/bitmaps/*.xpm
samples/*.txt
samples/makefile*
+samples/configure
+samples/configure.in
samples/config/*.cpp
samples/config/*.h
samples/exec/*.xpm
samples/exec/*.txt
+samples/makefile*
+samples/configure
+samples/configure.in
+
demos/bombs/*.cpp
demos/bombs/*.h
demos/bombs/*.def
demos/poem/*.bmp
demos/poem/*.dat
+demos/dbbrowse/*.cpp
+demos/dbbrowse/*.h
+demos/dbbrowse/*.def
+demos/dbbrowse/*.rc
+demos/dbbrowse/*.inf
+demos/dbbrowse/*.txt
+demos/dbbrowse/makefile*
+demos/dbbrowse/*.xbm
+demos/dbbrowse/*.xpm
+demos/dbbrowse/*.ico
+demos/dbbrowse/*.bmp
+demos/dbbrowse/bitmaps/*.bmp
+demos/dbbrowse/bitmaps/*.ico
+demos/dbbrowse/bitmaps/*.xpm
+demos/dbbrowse/de/*.po
+demos/dbbrowse/de/*.mo
+demos/dbbrowse/de/*.cmd
+demos/dbbrowse/de/*.cfg
+demos/dbbrowse/fr/*.po
+demos/dbbrowse/fr/*.mo
+demos/dbbrowse/fr/*.cmd
+demos/dbbrowse/fr/*.cfg
+demos/dbbrowse/help.cz/*.mo
+demos/dbbrowse/help.de/*.htm
+demos/dbbrowse/help.de/*.hhc
+demos/dbbrowse/help.de/*.hhp
+demos/dbbrowse/help.de/*.hhk
+demos/dbbrowse/help.png/*.png
+demos/dbbrowse/help.std/*.htm
+demos/dbbrowse/help.std/*.hhc
+demos/dbbrowse/help.std/*.hhp
+demos/dbbrowse/help.std/*.hhk
+
\membersection{::wxSplitPath}\label{wxsplitfunction}
-\func{void}{wxSplitPath}{\param{const char *}{ fullname}, \param{const wxString *}{ path}, \param{const wxString *}{ name}, \param{const wxString *}{ ext}}
+\func{void}{wxSplitPath}{\param{const char *}{ fullname}, \param{wxString *}{ path}, \param{wxString *}{ name}, \param{wxString *}{ ext}}
This function splits a full file name into components: the path (including possible disk/drive
specification under Windows), the base name and the extension. Any of the output parameters
Deletes the current validator (if any) and sets the window validator, having called wxValidator::Clone to
create a new validator of this type.
-\membersection{wxWindow::SetWindowStyleFlag}\label{wxwindowsetwindowstyleflag}
-
-\func{virtual void}{SetWindowStyleFlag}{\param{long}{ style}}
-
\membersection{wxWindow::SetWindowStyle}\label{wxwindowsetwindowstyle}
\func{void}{SetWindowStyle}{\param{long}{ style}}
{
// create the main frame window and show it
RegFrame *frame = new RegFrame(NULL, "wxRegKey Test", 50, 50, 600, 350);
- frame->Show(true);
+ frame->Show(TRUE);
SetTopWindow(frame);
- return true;
+ return TRUE;
}
// ----------------------------------------------------------------------------
if ( IsRoot() ) {
// we're the root key
m_pTree->AddStdKeys();
- return true;
+ return TRUE;
}
if ( Parent()->IsRoot() ) {
if ( !m_pKey->Open() ) {
wxLogError("The key '%s' can't be opened.", FullName());
- return false;
+ return FALSE;
}
// enumeration variables
bCont = m_pKey->GetNextValue(str, l);
}
- return true;
+ return TRUE;
}
void RegTreeCtrl::TreeNode::OnCollapse()
long lCurrent = GetSelection();
TreeNode *pCurrent = (TreeNode *)GetItemData(lCurrent);
- wxCHECK( pCurrent != NULL, false );
+ wxCHECK( pCurrent != NULL, FALSE );
return pCurrent->IsKey();
}
\ No newline at end of file
EVT_MENU(PU_EXIT, MyTaskBarIcon::OnMenuExit)
END_EVENT_TABLE()
-void MyTaskBarIcon::OnMenuRestore(wxEvent& )
+void MyTaskBarIcon::OnMenuRestore(wxCommandEvent& )
{
dialog->Show(TRUE);
}
-void MyTaskBarIcon::OnMenuExit(wxEvent& )
+void MyTaskBarIcon::OnMenuExit(wxCommandEvent& )
{
dialog->Close(TRUE);
}
virtual void OnLButtonDClick(wxEvent&);
virtual void OnRButtonDClick(wxEvent&);
- void OnMenuRestore(wxEvent&);
- void OnMenuExit(wxEvent&);
+ void OnMenuRestore(wxCommandEvent&);
+ void OnMenuExit(wxCommandEvent&);
DECLARE_EVENT_TABLE()
};
wxMessageBox(msg);
}
+ // hhp2cached
+ project.SetIncludeDirs(wxStringList("../../include", 0));
+ project.SetResourceIncludeDirs(wxStringList("../../include", 0));
+ project.SetLibDirs(wxStringList("../../lib", 0));
+ project.SetDebugLibDirs(wxStringList("../../src/Debug", "../../src/jpeg/Debug", "../../src/tiff/Debug", 0));
+ project.SetReleaseLibDirs(wxStringList("../../src/Release", "../../src/jpeg/Release", "../../src/tiff/Release", 0));
+
+ project.SetProjectName("hhp2cachedVC");
+ project.SetTargetName("hhp2cached");
+ project.SetProjectPath(dir + wxString("/utils/hhp2cached"));
+ project.SetSourceFiles(wxStringList("hhp2cached.cpp", 0));
+
+ if (!project.GenerateVCProject())
+ {
+ wxString msg("Could not generate hhp2cached project");
+ wxMessageBox(msg);
+ }
+
// wxTreeLayout sample
project.SetIncludeDirs(wxStringList("../../../include", 0));