]> git.saurik.com Git - wxWidgets.git/commitdiff
Small Tex2RTF fixes; wxMotif compile fixes (motif.inc, wxCheckListBox);
authorJulian Smart <julian@anthemion.co.uk>
Fri, 12 Feb 1999 22:00:14 +0000 (22:00 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 12 Feb 1999 22:00:14 +0000 (22:00 +0000)
wxMSW wxWindow::IsShown fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1690 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

12 files changed:
docs/changes.txt
docs/latex/wx/socket.tex
docs/latex/wx/strmmem.tex
include/wx/defs.h
include/wx/motif/dataobj.h
src/generic/gridg.cpp
src/motif.inc
src/msw/app.cpp
src/msw/radiobox.cpp
src/msw/window.cpp
utils/tex2rtf/src/rtfutils.cpp
utils/tex2rtf/src/tex2rtf.cpp

index 0cec649ba29b6867354aa7ecb817875e6173892c..d204172b5019150e72e33a9b8398c9328dee4c67 100644 (file)
@@ -1,11 +1,28 @@
 wxWindows 2 Change Log
 ----------------------
 
-Beta 4, February 1999
+Beta 5, February ??  1999
 -------------------------
 
 wxGTK:
 
+
+wxMSW:
+
+- Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
+  expected).
+
+wxMotif:
+
+
+General:
+
+
+Beta 4, February 12th 1999
+--------------------------
+
+wxGTK:
+
 - Miscellaneous fixes.
 
 wxMSW:
index 70fdb9dc5062e8a0dc6e964bbb3b2df8cbc01623..f4e8f7df05654cf92a9e0cc358bfc5570cdb5c6d 100644 (file)
@@ -481,7 +481,7 @@ Sets an event handler to be called when a socket event occured.
 
 Constructs a new wxSocketClient.
 
-{\bf Warning !} The created socket client needs to be registered to a socket handler (See \helpref{wxSocketHandler}{wxsockethandler}).
+{\bf Warning !} The new socket client needs to be registered to a socket handler (See \helpref{wxSocketHandler}{wxsockethandler}).
 
 \wxheading{Parameters}
 
@@ -494,7 +494,7 @@ Constructs a new wxSocketClient.
 
 \func{}{\destruct{wxSocketClient}}{\void}
 
-Destructs a wxSocketClient object.
+Destroys a wxSocketClient object.
 
 %
 % Connect
@@ -609,7 +609,7 @@ many sockets.
 
 \func{}{\destruct{wxSocketHandler}}{\void}
 
-Destructs a wxSocketHandler object.
+Destroys a wxSocketHandler object.
 
 %
 % Register
@@ -763,7 +763,7 @@ Constructs a new wxSocketServer.
 
 \func{}{\destruct{wxSocketServer}}{\void}
 
-Destructs a wxSocketServer object (it doesn't close the accepted connection).
+Destroys a wxSocketServer object (it doesn't close the accepted connection).
 
 %
 % Accept
@@ -800,4 +800,3 @@ This is useful when someone wants to inherit wxSocketBase.
 
 Returns TRUE if no error occurs, else FALSE.
 
-
index ebf0bcaf9df8a51333ee1b9d88dffcae643d553b..194478288e9e47e24f0cb18119c998cc5a3304e0 100644 (file)
@@ -14,6 +14,7 @@
 \wxheading{Remark}
 
 You can create a similar stream by this way:
+
 \begin{verbatim}
   wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::read);
   wxInputStream *input = new wxInputStream(sb);
@@ -52,10 +53,10 @@ Destructor.
 
 \helpref{wxStreamBuffer}{wxstreamBuffer}
 
-
 \wxheading{Remark}
 
 You can create a similar stream by this way:
+
 \begin{verbatim}
   wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::write);
   wxOutputStream *input = new wxOutputStream(sb);
@@ -67,6 +68,7 @@ You can create a similar stream by this way:
 \end{verbatim}
 
 This way is also useful to create read/write memory stream:
+
 \begin{verbatim}
   wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::read\_write);
   wxOutputStream *output = new wxOutputStream(sb);
@@ -100,3 +102,4 @@ stream.
 \func{}{\destruct{wxMemoryOutputStream}}{\void}
 
 Destructor.
+
index 76a0bd8981e5664250f197a9c8e8e5d223993f4b..10fe0fa31601d2eba338211a0cebbbb5b834ac8a 100644 (file)
@@ -201,6 +201,7 @@ typedef int wxWindowID;
 
 #ifdef __WXMSW__
 
+/*
 #ifdef __BORLANDC__
 
 #  ifdef WXMAKINGDLL
@@ -218,14 +219,18 @@ typedef int wxWindowID;
 #  endif
 
 #else
+*/
+
+// _declspec works in BC++ 5 and later, as well as VC++
+#if defined(__VISUALC__) || defined(__BORLANDC__)
 
 #  ifdef WXMAKINGDLL
-#    define WXDLLEXPORT __declspec( dllexport )
-#    define WXDLLEXPORT_DATA(type) __declspec( dllexport ) type
-#    define WXDLLEXPORT_CTORFN // __declspec( dllexport )
+#    define WXDLLEXPORT _declspec( dllexport )
+#    define WXDLLEXPORT_DATA(type) _declspec( dllexport ) type
+#    define WXDLLEXPORT_CTORFN
 #  elif defined(WXUSINGDLL)
-#    define WXDLLEXPORT __declspec( dllimport )
-#    define WXDLLEXPORT_DATA(type) __declspec( dllimport ) type
+#    define WXDLLEXPORT _declspec( dllimport )
+#    define WXDLLEXPORT_DATA(type) _declspec( dllimport ) type
 #    define WXDLLEXPORT_CTORFN
 #  else
 #    define WXDLLEXPORT
@@ -233,6 +238,10 @@ typedef int wxWindowID;
 #    define WXDLLEXPORT_CTORFN
 #  endif
 
+#else
+#  define WXDLLEXPORT
+#  define WXDLLEXPORT_DATA(type) type
+#  define WXDLLEXPORT_CTORFN
 #endif
 
 #else
index 8c8150a8b1328590373a145a8e4fb28d373b4626..02daba2b373b3d67e1f976f435bf12519d08180b 100644 (file)
@@ -11,7 +11,7 @@
 #define _WX_DATAOBJ_H_
 
 #ifdef __GNUG__
-#pragma interface
+#pragma interface "dataobj.h"
 #endif
 
 #include "wx/defs.h"
index 34da5b84a3fcbca84aed29c87136d838bac93be9..624cac6ad1c4be8e6b004c928457d8c1b18d82f2 100644 (file)
@@ -222,7 +222,7 @@ bool wxGenericGrid::Create(wxWindow *parent, wxWindowID id, const wxPoint& pos,
   m_hScrollBar = new wxScrollBar(this, wxGRID_HSCROLL, wxPoint(0, 0), wxSize(20, 100), wxHORIZONTAL);
   m_vScrollBar = new wxScrollBar(this, wxGRID_VSCROLL, wxPoint(0, 0), wxSize(100, 20), wxVERTICAL);
 
-  SetSize(-1, -1, size.x, size.y);
+//  SetSize(pos.x, pos.y, size.x, size.y);
 
   return TRUE;
 }
index 4736d0f71f466bf9925421132d2dd060f05690e6..169888d98c559d7aa8dc5921c8dbd2a9d4c846c2 100644 (file)
@@ -83,6 +83,7 @@ LIB_CPP_SRC=\
  motif/combobox.cpp \
  motif/cursor.cpp \
  motif/data.cpp \
+ motif/dataobj.cpp \
  motif/dc.cpp \
  motif/dcclient.cpp \
  motif/dcmemory.cpp \
index 8488c2d14f02996e75c2abfc614f81a868e6e6cf..134f594a658aa0ce6dcce433ea5a34c6658d2de5 100644 (file)
@@ -319,8 +319,6 @@ bool wxApp::RegisterWindowClasses()
 // Register the panel window class.
   WNDCLASS wndclass2;   // Structure used to register Windows class.
   memset(&wndclass2, 0, sizeof(WNDCLASS));   // start with NULL defaults
-  // Use CS_OWNDC to avoid messing about restoring the context
-  // for every graphic operation.
   wndclass2.style         = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS ;
   wndclass2.lpfnWndProc   = (WNDPROC)wxWndProc;
   wndclass2.cbClsExtra    = 0;
index d80bc663911bce8ea175c370626aa564198e57fe..934e190a304b5b8685b77751f08027468fee5d26 100644 (file)
@@ -792,6 +792,7 @@ void wxRadioBox::SetFocus(void)
 
 bool wxRadioBox::Show(bool show)
 {
+    m_isShown = show;
     int cshow;
     if (show)
         cshow = SW_SHOW;
index 6bc6898c495596a50ab1456c8fabb67fd0b5f286..1aff70f7539b10cd3fee5027e6b8fa25e42f5f6e 100644 (file)
@@ -770,13 +770,14 @@ void wxWindow::AdjustForParentClientOrigin(int& x, int& y, int sizeFlags)
 
 bool wxWindow::Show(bool show)
 {
+    m_isShown = show;
     HWND hWnd = (HWND) GetHWND();
     int cshow;
     if (show)
         cshow = SW_SHOW;
     else
         cshow = SW_HIDE;
-    ShowWindow(hWnd, (BOOL)cshow);
+    ShowWindow(hWnd, cshow);
     if (show)
     {
         BringWindowToTop(hWnd);
@@ -788,7 +789,11 @@ bool wxWindow::Show(bool show)
 
 bool wxWindow::IsShown(void) const
 {
-    return (::IsWindowVisible((HWND) GetHWND()) != 0);
+    // Can't rely on IsWindowVisible, since it will return FALSE
+    // if the parent is not visible.
+    return m_isShown;
+//    int ret = ::IsWindowVisible((HWND) GetHWND()) ;
+//    return (ret != 0);
 }
 
 int wxWindow::GetCharHeight(void) const
index d58191aa95069fcc63cf9ec819c1ad554aafb14e..dfd45ccde9fe4d74bca8c682f8725df7c4cb78cf 100644 (file)
@@ -536,8 +536,8 @@ bool WriteHPJ(char *filename)
   if (!helpTitle)
     helpTitle = "Untitled";
     
-  char *thePath = wxPathOnly(InputFile);
-  if (!thePath)
+  wxString thePath = wxPathOnly(InputFile);
+  if (thePath.IsEmpty())
     thePath = ".";
   fprintf(fd, "[OPTIONS]\n");
   fprintf(fd, "BMROOT=%s ; Assume that bitmaps are where the source is\n", thePath);
index e115c0d4dc4ace1205f42eee81f8bd46c47d4ce6..a61db85708b7e9cfd62fc528c96d500a5247c15c 100644 (file)
@@ -647,7 +647,7 @@ void ChooseOutputFile(bool force)
   char extensionBuf[10];
   char wildBuf[10];
   strcpy(wildBuf, "*.");
-  char *path = NULL;
+  wxString path;
   if (OutputFile)
     path = wxPathOnly(OutputFile);
   else if (InputFile)