]> git.saurik.com Git - wxWidgets.git/commitdiff
Corrected some problems I introduced, added tabevent.tex.
authorJulian Smart <julian@anthemion.co.uk>
Mon, 15 Jun 1998 07:57:40 +0000 (07:57 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 15 Jun 1998 07:57:40 +0000 (07:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@101 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/tabevent.tex [new file with mode: 0644]
docs/msw/todo.txt
include/wx/msw/helpwin.h
src/gtk/threadpsx.cpp
src/gtk1/threadpsx.cpp
src/msw/helpwin.cpp
src/msw/thread.cpp

diff --git a/docs/latex/wx/tabevent.tex b/docs/latex/wx/tabevent.tex
new file mode 100644 (file)
index 0000000..0ec2f36
--- /dev/null
@@ -0,0 +1,37 @@
+\section{\class{wxTabEvent}}\label{wxtabevent}
+
+This class represents the events generated by a tab control.
+
+\wxheading{Derived from}
+
+\helpref{wxCommandEvent}{wxcommandevent}\\
+\helpref{wxEvent}{wxevent}\\
+\helpref{wxEvtHandler}{wxevthandler}\\
+\helpref{wxObject}{wxobject}
+
+\wxheading{Event table macros}
+
+To process a tab event, use these event handler macros to direct input to member
+functions that take a wxTabEvent argument.
+
+\twocolwidtha{7cm}
+\begin{twocollist}\itemsep=0pt
+\twocolitem{{\bf EVT\_TAB\_SEL\_CHANGED(id, func)}}{Process a wxEVT\_TAB\_SEL\_CHANGED event, indicating that
+the tab selection has changed.}
+\twocolitem{{\bf EVT\_TAB\_SEL\_CHANGING(id, func)}}{Process a wxEVT\_TAB\_SEL\_CHANGING event, indicating that
+the tab selection is changing.}
+\end{twocollist}%
+
+\wxheading{See also}
+
+\helpref{wxTabCtrl}{wxtabctrl}
+
+\latexignore{\rtfignore{\wxheading{Members}}}
+
+\membersection{wxTabEvent::wxTabEvent}\label{wxtabeventconstr}
+
+\func{}{wxTabEvent}{\param{WXTYPE}{ commandType = 0}, \param{int}{ id = 0}}
+
+Constructor.
+
+
index 96c04211692794b8954854371e9f67795d61ec82..dba3e004938a6eccf09984efc95d4af35b2170c8 100644 (file)
@@ -54,6 +54,7 @@ Update manual.
     wxBaseArray, other arrays
     (wxOwnerDrawn)
     Document the include file for each class
+    Macros, e.g. wxASSERT
 
 Write tutorial.
 
index 01b2eecf053bd8bc596c2fb08b91502450d07133..4d460f037a540314946578058d12ca6bcf18f5fe 100644 (file)
@@ -31,7 +31,7 @@ class WXDLLEXPORT wxWinHelpController: public wxHelpControllerBase
   ~wxWinHelpController(void);
 
   // Must call this to set the filename and server name
-  virtual bool Initialize(const wxString& file, int server = -1);
+  virtual bool Initialize(const wxString& file);
 
   // If file is "", reloads file given  in Initialize
   virtual bool LoadFile(const wxString& file = "");
index 07b510365478c28e818bfe3a53bac46fab601279..9f6620f0c1f7293973c2da2f5a84aeb8a43f3749 100644 (file)
@@ -278,7 +278,7 @@ void wxThread::TestDestroy()
   pthread_testcancel();
 }
 
-bool wxThread::IsMain() const
+bool wxThread::IsMain()
 {
   return (bool)pthread_equal(pthread_self(), p_mainid);
 }
index 07b510365478c28e818bfe3a53bac46fab601279..9f6620f0c1f7293973c2da2f5a84aeb8a43f3749 100644 (file)
@@ -278,7 +278,7 @@ void wxThread::TestDestroy()
   pthread_testcancel();
 }
 
-bool wxThread::IsMain() const
+bool wxThread::IsMain()
 {
   return (bool)pthread_equal(pthread_self(), p_mainid);
 }
index dab0ab53960ee64c02b1ce3b349167729725059a..9e1e6a5997e3834e5fd00efe56407133f9bc8de8 100644 (file)
@@ -54,7 +54,7 @@ wxWinHelpController::~wxWinHelpController(void)
 {
 }
 
-bool wxWinHelpController::Initialize(const wxString& filename, int server)
+bool wxWinHelpController::Initialize(const wxString& filename)
 {
   m_helpFile = filename;
   return TRUE;
index 33ca0a645ad7b656c210967a899e2b7dd933fdfd..4cd91e87c04e9876bfc5a3d64a274552fff41117 100644 (file)
@@ -233,7 +233,7 @@ void wxThread::SetPriority(int prio)
   p_internal->prio = prio;
 }
 
-int wxThread::GetPriority()
+int wxThread::GetPriority() const
 {
   return p_internal->prio;
 }
@@ -275,7 +275,7 @@ unsigned long wxThread::GetID() const
   return (unsigned long)p_internal->tid;
 }
 
-bool wxThread::IsMain() const
+bool wxThread::IsMain()
 {
   return (GetCurrentThread() == p_mainid);
 }