appcmn.cpp Common Base
choiccmn.cpp Common
clipcmn.cpp Common
+clntdata.cpp Common
cmdline.cpp Common Base
cmdproc.cpp Common
cmndata.cpp Common
choicdlg.h WXH
choice.h WXH
clipbrd.h WXH
+clntdata.h WXH
cmdline.h WXH Base
cmdproc.h WXH
cmndata.h WXH
--- /dev/null
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/clntdata.h
+// Purpose: A mixin class for holding a wxClientData or void pointer
+// Author: Robin Dunn
+// Modified by:
+// Created: 9-Oct-2001
+// RCS-ID: $Id$
+// Copyright: (c) wxWindows team
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_CLNTDATAH__
+#define _WX_CLNTDATAH__
+
+#ifdef __GNUG__
+ #pragma interface "event.h"
+#endif
+
+#include "wx/defs.h"
+
+// ----------------------------------------------------------------------------
+
+// what kind of client data do we have?
+enum wxClientDataType
+{
+ wxClientData_None, // we don't know yet because we don't have it at all
+ wxClientData_Object, // our client data is typed and we own it
+ wxClientData_Void // client data is untyped and we don't own it
+};
+
+class WXDLLEXPORT wxClientData
+{
+public:
+ wxClientData() { }
+ virtual ~wxClientData() { }
+};
+
+class WXDLLEXPORT wxStringClientData : public wxClientData
+{
+public:
+ wxStringClientData() { }
+ wxStringClientData( const wxString &data ) : m_data(data) { }
+ void SetData( const wxString &data ) { m_data = data; }
+ const wxString& GetData() const { return m_data; }
+
+private:
+ wxString m_data;
+};
+
+
+class WXDLLEXPORT wxClientDataContainer
+{
+public:
+ wxClientDataContainer();
+ ~wxClientDataContainer();
+
+ // each window may have associated client data: either a pointer to
+ // wxClientData object in which case it is managed by the window (i.e.
+ // it will delete the data when it's destroyed) or an untyped pointer
+ // which won't be deleted by the window - but not both of them
+ void SetClientObject( wxClientData *data ) { DoSetClientObject(data); }
+ wxClientData *GetClientObject() const { return DoGetClientObject(); }
+
+ void SetClientData( void *data ) { DoSetClientData(data); }
+ void *GetClientData() const { return DoGetClientData(); }
+
+protected:
+ // user data associated with the window: either an object which will be
+ // deleted by the window when it's deleted or some raw pointer which we do
+ // nothing with - only one type of data can be used with the given window
+ // (i.e. you cannot set the void data and then associate the window with
+ // wxClientData or vice versa)
+ union
+ {
+ wxClientData *m_clientObject;
+ void *m_clientData;
+ };
+
+ // client data accessors
+ virtual void DoSetClientObject( wxClientData *data );
+ virtual wxClientData *DoGetClientObject() const;
+
+ virtual void DoSetClientData( void *data );
+ virtual void *DoGetClientData() const;
+
+ // what kind of data do we have?
+ wxClientDataType m_clientDataType;
+
+};
+
+// ----------------------------------------------------------------------------
+#endif
+
#include "wx/defs.h"
#include "wx/object.h"
+#include "wx/clntdata.h"
#if wxUSE_GUI
#include "wx/gdicmn.h"
class WXDLLEXPORT wxList;
#if wxUSE_GUI
- class WXDLLEXPORT wxClientData;
class WXDLLEXPORT wxDC;
class WXDLLEXPORT wxMenu;
class WXDLLEXPORT wxWindow;
wxEVT_COMPARE_ITEM
*/
+
// ============================================================================
// event handler and related classes
// ============================================================================
// wxEvtHandler: the base class for all objects handling wxWindows events
// ----------------------------------------------------------------------------
-class WXDLLEXPORT wxEvtHandler : public wxObject
+class WXDLLEXPORT wxEvtHandler : public wxObject, public wxClientDataContainer
{
public:
wxEvtHandler();
// ----------------------------------------------------------------------------
class WXDLLEXPORT wxCaret;
-class WXDLLEXPORT wxClientData;
class WXDLLEXPORT wxControl;
class WXDLLEXPORT wxCursor;
class WXDLLEXPORT wxDC;
WXDLLEXPORT_DATA(extern wxWindowList) wxTopLevelWindows;
-// ----------------------------------------------------------------------------
-// helper classes used by [SG]etClientObject/Data
-//
-// TODO move into a separate header?
-// ----------------------------------------------------------------------------
-
-// what kind of client data do we have?
-enum wxClientDataType
-{
- wxClientData_None, // we don't know yet because we don't have it at all
- wxClientData_Object, // our client data is typed and we own it
- wxClientData_Void // client data is untyped and we don't own it
-};
-
-class wxClientData
-{
-public:
- wxClientData() { }
- virtual ~wxClientData() { }
-};
-
-class wxStringClientData : public wxClientData
-{
-public:
- wxStringClientData() { }
- wxStringClientData( const wxString &data ) : m_data(data) { }
- void SetData( const wxString &data ) { m_data = data; }
- const wxString& GetData() const { return m_data; }
-
-private:
- wxString m_data;
-};
-
// ----------------------------------------------------------------------------
// wxWindowBase is the base class for all GUI controls/widgets, this is the public
// interface of this class.
virtual wxValidator *GetValidator() { return m_windowValidator; }
#endif // wxUSE_VALIDATORS
- // client data
- // -----------
-
- // each window may have associated client data: either a pointer to
- // wxClientData object in which case it is managed by the window (i.e.
- // it will delete the data when it's destroyed) or an untyped pointer
- // which won't be deleted by the window - but not both of them
- void SetClientObject( wxClientData *data ) { DoSetClientObject(data); }
- wxClientData *GetClientObject() const { return DoGetClientObject(); }
-
- void SetClientData( void *data ) { DoSetClientData(data); }
- void *GetClientData() const { return DoGetClientData(); }
// dialog oriented functions
// -------------------------
wxAcceleratorTable m_acceleratorTable;
#endif // wxUSE_ACCEL
- // user data associated with the window: either an object which will be
- // deleted by the window when it's deleted or some raw pointer which we do
- // nothing with - only one type of data can be used with the given window
- // (i.e. you cannot set the void data and then associate the window with
- // wxClientData or vice versa)
- union
- {
- wxClientData *m_clientObject;
- void *m_clientData;
- };
-
// the tooltip for this window (may be NULL)
#if wxUSE_TOOLTIPS
wxToolTip *m_tooltip;
virtual bool DoPopupMenu( wxMenu *menu, int x, int y ) = 0;
#endif // wxUSE_MENUS
- // client data accessors
- virtual void DoSetClientObject( wxClientData *data );
- virtual wxClientData *DoGetClientObject() const;
-
- virtual void DoSetClientData( void *data );
- virtual void *DoGetClientData() const;
-
// Makes an adjustment to the window position (for example, a frame that has
// a toolbar that it manages itself).
virtual void AdjustForParentClientOrigin(int& x, int& y, int sizeFlags);
- // what kind of data do we have?
- wxClientDataType m_clientDataType;
-
private:
// contains the last id generated by NewControlId
static int ms_lastControlId;
--- /dev/null
+/////////////////////////////////////////////////////////////////////////////
+// Name: common/clntdata.cpp
+// Purpose: A mixin class for holding a wxClientData or void pointer
+// Author: Robin Dunn
+// Modified by:
+// Created: 9-Oct-2001
+// RCS-ID: $Id$
+// Copyright: (c) wxWindows team
+// Licence: wxWindows license
+/////////////////////////////////////////////////////////////////////////////
+
+#ifdef __GNUG__
+ #pragma implementation "clntdata.h"
+#endif
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+ #pragma hdrstop
+#endif
+
+#include "wx/clntdata.h"
+
+
+// ----------------------------------------------------------------------------
+
+
+wxClientDataContainer::wxClientDataContainer()
+{
+ // no client data (yet)
+ m_clientData = NULL;
+ m_clientDataType = wxClientData_None;
+}
+
+wxClientDataContainer::~wxClientDataContainer()
+{
+ // we only delete object data, not untyped
+ if ( m_clientDataType == wxClientData_Object )
+ delete m_clientObject;
+}
+
+void wxClientDataContainer::DoSetClientObject( wxClientData *data )
+{
+ wxASSERT_MSG( m_clientDataType != wxClientData_Void,
+ wxT("can't have both object and void client data") );
+
+ if ( m_clientObject )
+ delete m_clientObject;
+
+ m_clientObject = data;
+ m_clientDataType = wxClientData_Object;
+}
+
+wxClientData *wxClientDataContainer::DoGetClientObject() const
+{
+ // it's not an error to call GetClientObject() on a window which doesn't
+ // have client data at all - NULL will be returned
+ wxASSERT_MSG( m_clientDataType != wxClientData_Void,
+ wxT("this window doesn't have object client data") );
+
+ return m_clientObject;
+}
+
+void wxClientDataContainer::DoSetClientData( void *data )
+{
+ wxASSERT_MSG( m_clientDataType != wxClientData_Object,
+ wxT("can't have both object and void client data") );
+
+ m_clientData = data;
+ m_clientDataType = wxClientData_Void;
+}
+
+void *wxClientDataContainer::DoGetClientData() const
+{
+ // it's not an error to call GetClientData() on a window which doesn't have
+ // client data at all - NULL will be returned
+ wxASSERT_MSG( m_clientDataType != wxClientData_Object,
+ wxT("this window doesn't have void client data") );
+
+ return m_clientData;
+}
+
+
+// ----------------------------------------------------------------------------
+
+
m_isShown = FALSE;
m_isEnabled = TRUE;
- // no client data (yet)
- m_clientData = NULL;
- m_clientDataType = wxClientData_None;
-
// the default event handler is just this window
m_eventHandler = this;
delete m_windowValidator;
#endif // wxUSE_VALIDATORS
- // we only delete object data, not untyped
- if ( m_clientDataType == wxClientData_Object )
- delete m_clientObject;
-
#if wxUSE_CONSTRAINTS
// Have to delete constraints/sizer FIRST otherwise sizers may try to look
// at deleted windows as they delete themselves.
return pt2;
}
-// ----------------------------------------------------------------------------
-// client data
-// ----------------------------------------------------------------------------
-
-void wxWindowBase::DoSetClientObject( wxClientData *data )
-{
- wxASSERT_MSG( m_clientDataType != wxClientData_Void,
- wxT("can't have both object and void client data") );
-
- if ( m_clientObject )
- delete m_clientObject;
-
- m_clientObject = data;
- m_clientDataType = wxClientData_Object;
-}
-
-wxClientData *wxWindowBase::DoGetClientObject() const
-{
- // it's not an error to call GetClientObject() on a window which doesn't
- // have client data at all - NULL will be returned
- wxASSERT_MSG( m_clientDataType != wxClientData_Void,
- wxT("this window doesn't have object client data") );
-
- return m_clientObject;
-}
-
-void wxWindowBase::DoSetClientData( void *data )
-{
- wxASSERT_MSG( m_clientDataType != wxClientData_Object,
- wxT("can't have both object and void client data") );
-
- m_clientData = data;
- m_clientDataType = wxClientData_Void;
-}
-
-void *wxWindowBase::DoGetClientData() const
-{
- // it's not an error to call GetClientData() on a window which doesn't have
- // client data at all - NULL will be returned
- wxASSERT_MSG( m_clientDataType != wxClientData_Object,
- wxT("this window doesn't have void client data") );
-
- return m_clientData;
-}
-
// ----------------------------------------------------------------------------
// event handlers
// ----------------------------------------------------------------------------
-# This file was automatically generated by tmake at 14:18, 2001/10/06
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
ALL_SOURCES = \
generic/accel.cpp \
common/appcmn.cpp \
common/choiccmn.cpp \
common/clipcmn.cpp \
+ common/clntdata.cpp \
common/cmdline.cpp \
common/cmdproc.cpp \
common/cmndata.cpp \
choicdlg.h \
choice.h \
clipbrd.h \
+ clntdata.h \
cmdline.h \
+ cmdproc.h \
cmndata.h \
colordlg.h \
colour.h \
generic/progdlgg.h \
generic/sashwin.h \
generic/scrolwin.h \
+ generic/spinctlg.h \
generic/splash.h \
generic/splitter.h \
generic/statusbr.h \
appcmn.o \
choiccmn.o \
clipcmn.o \
+ clntdata.o \
cmdline.o \
cmdproc.o \
cmndata.o \
-# This file was automatically generated by tmake at 14:18, 2001/10/06
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
ALL_SOURCES = \
generic/accel.cpp \
common/appcmn.cpp \
common/choiccmn.cpp \
common/clipcmn.cpp \
+ common/clntdata.cpp \
common/cmdline.cpp \
common/cmdproc.cpp \
common/cmndata.cpp \
choicdlg.h \
choice.h \
clipbrd.h \
+ clntdata.h \
cmdline.h \
+ cmdproc.h \
cmndata.h \
colordlg.h \
colour.h \
generic/progdlgg.h \
generic/sashwin.h \
generic/scrolwin.h \
+ generic/spinctlg.h \
generic/splash.h \
generic/splitter.h \
generic/statusbr.h \
appcmn.o \
choiccmn.o \
clipcmn.o \
+ clntdata.o \
cmdline.o \
cmdproc.o \
cmndata.o \
-# This file was automatically generated by tmake at 23:22, 2001/10/04
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MAC.T!
ALL_SOURCES = \
generic/busyinfo.cpp \
common/appcmn.cpp \
common/choiccmn.cpp \
common/clipcmn.cpp \
+ common/clntdata.cpp \
common/cmdline.cpp \
common/cmdproc.cpp \
common/cmndata.cpp \
choicdlg.h \
choice.h \
clipbrd.h \
+ clntdata.h \
cmdline.h \
cmdproc.h \
cmndata.h \
generic/progdlgg.h \
generic/sashwin.h \
generic/scrolwin.h \
+ generic/spinctlg.h \
generic/splash.h \
generic/splitter.h \
generic/statusbr.h \
appcmn.o \
choiccmn.o \
clipcmn.o \
+ clntdata.o \
cmdline.o \
cmdproc.o \
cmndata.o \
-# This file was automatically generated by tmake at 23:22, 2001/10/04
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MAC.T!
ALL_SOURCES = \
generic/busyinfo.cpp \
common/appcmn.cpp \
common/choiccmn.cpp \
common/clipcmn.cpp \
+ common/clntdata.cpp \
common/cmdline.cpp \
common/cmdproc.cpp \
common/cmndata.cpp \
choicdlg.h \
choice.h \
clipbrd.h \
+ clntdata.h \
cmdline.h \
cmdproc.h \
cmndata.h \
generic/progdlgg.h \
generic/sashwin.h \
generic/scrolwin.h \
+ generic/spinctlg.h \
generic/splash.h \
generic/splitter.h \
generic/statusbr.h \
appcmn.o \
choiccmn.o \
clipcmn.o \
+ clntdata.o \
cmdline.o \
cmdproc.o \
cmndata.o \
-# This file was automatically generated by tmake at 16:55, 2001/09/21
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MOTIF.T!
ALL_SOURCES = \
generic/busyinfo.cpp \
common/appcmn.cpp \
common/choiccmn.cpp \
common/clipcmn.cpp \
+ common/clntdata.cpp \
common/cmdline.cpp \
common/cmdproc.cpp \
common/cmndata.cpp \
choicdlg.h \
choice.h \
clipbrd.h \
+ clntdata.h \
cmdline.h \
+ cmdproc.h \
cmndata.h \
colordlg.h \
colour.h \
generic/progdlgg.h \
generic/sashwin.h \
generic/scrolwin.h \
+ generic/spinctlg.h \
generic/splash.h \
generic/splitter.h \
generic/statusbr.h \
appcmn.o \
choiccmn.o \
clipcmn.o \
+ clntdata.o \
cmdline.o \
cmdproc.o \
cmndata.o \
-# This file was automatically generated by tmake at 16:52, 2001/09/30
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MSW.T!
ALL_SOURCES = \
generic/busyinfo.cpp \
common/appcmn.cpp \
common/choiccmn.cpp \
common/clipcmn.cpp \
+ common/clntdata.cpp \
common/cmdline.cpp \
common/cmdproc.cpp \
common/cmndata.cpp \
choicdlg.h \
choice.h \
clipbrd.h \
+ clntdata.h \
cmdline.h \
+ cmdproc.h \
cmndata.h \
colordlg.h \
colour.h \
generic/progdlgg.h \
generic/sashwin.h \
generic/scrolwin.h \
+ generic/spinctlg.h \
generic/splash.h \
generic/splitter.h \
generic/statusbr.h \
appcmn.o \
choiccmn.o \
clipcmn.o \
+ clntdata.o \
cmdline.o \
cmdproc.o \
cmndata.o \
window.o
GUI_LOWLEVEL_OBJS = \
+ app.o \
+ bitmap.o \
+ brush.o \
+ caret.o \
+ clipbrd.o \
+ colour.o \
+ cursor.o \
+ data.o \
+ dc.o \
+ dcclient.o \
+ dcmemory.o \
+ dcprint.o \
+ dcscreen.o \
+ dib.o \
evtloop.o \
+ font.o \
+ fontenum.o \
+ fontutil.o \
+ gdiimage.o \
+ gdiobj.o \
+ icon.o \
imaglist.o \
- toplevel.o
+ main.o \
+ palette.o \
+ pen.o \
+ region.o \
+ settings.o \
+ timer.o \
+ toplevel.o \
+ window.o
HTMLOBJS = \
helpctrl.o \
-# This file was automatically generated by tmake at 14:54, 2001/09/26
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE BASEVC.T!
# File: makebase.vc
-# This file was automatically generated by tmake at 14:54, 2001/09/26
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE B32.T!
#
$(MSWDIR)\appcmn.obj \
$(MSWDIR)\choiccmn.obj \
$(MSWDIR)\clipcmn.obj \
+ $(MSWDIR)\clntdata.obj \
$(MSWDIR)\cmdline.obj \
$(MSWDIR)\cmdproc.obj \
$(MSWDIR)\cmndata.obj \
$(MSWDIR)\clipcmn.obj: $(COMMDIR)\clipcmn.$(SRCSUFF)
+$(MSWDIR)\clntdata.obj: $(COMMDIR)\clntdata.$(SRCSUFF)
+
$(MSWDIR)\cmdline.obj: $(COMMDIR)\cmdline.$(SRCSUFF)
$(MSWDIR)\cmdproc.obj: $(COMMDIR)\cmdproc.$(SRCSUFF)
cd $(WXDIR)\src\jpeg
make -f makefile.b32
cd $(WXDIR)\src\msw
+
+clean_jpeg:
+ cd $(WXDIR)\src\jpeg
make -f makefile.b32 clean
cd $(WXDIR)\src\msw
-regex: $(CFG)
+regex: $(CFG)
cd $(WXDIR)\src\regex
- make -f makefile.b32
+ make -f makefile.b32 lib
cd $(WXDIR)\src\msw
clean_regex:
cd $(WXDIR)\src\regex
-
-clean_jpeg:
- cd $(WXDIR)\src\jpeg
make -f makefile.b32 clean
cd $(WXDIR)\src\msw
-# This file was automatically generated by tmake at 14:54, 2001/09/26
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE BCC.T!
#
$(MSWDIR)\appcmn.obj \
$(MSWDIR)\choiccmn.obj \
$(MSWDIR)\clipcmn.obj \
+ $(MSWDIR)\clntdata.obj \
$(MSWDIR)\cmdline.obj \
$(MSWDIR)\cmdproc.obj \
$(MSWDIR)\cmndata.obj \
$(MSWDIR)\clipcmn.obj: $(COMMDIR)\clipcmn.$(SRCSUFF)
+$(MSWDIR)\clntdata.obj: $(COMMDIR)\clntdata.$(SRCSUFF)
+
$(MSWDIR)\cmdline.obj: $(COMMDIR)\cmdline.$(SRCSUFF)
$(MSWDIR)\cmdproc.obj: $(COMMDIR)\cmdproc.$(SRCSUFF)
-# This file was automatically generated by tmake at 14:54, 2001/09/26
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE DOS.T!
#
$(COMMDIR)\appcmn.obj \
$(COMMDIR)\choiccmn.obj \
$(COMMDIR)\clipcmn.obj \
+ $(COMMDIR)\clntdata.obj \
$(COMMDIR)\cmdline.obj \
$(COMMDIR)\cmdproc.obj \
$(COMMDIR)\cmndata.obj \
$(CPPFLAGS) /Fo$@ /c /Tp $*.$(SRCSUFF)
<<
+$(COMMDIR)/clntdata.obj: $*.$(SRCSUFF)
+ cl @<<
+$(CPPFLAGS) /Fo$@ /c /Tp $*.$(SRCSUFF)
+<<
+
$(COMMDIR)/cmdline.obj: $*.$(SRCSUFF)
cl @<<
$(CPPFLAGS) /Fo$@ /c /Tp $*.$(SRCSUFF)
-# This file was automatically generated by tmake at 14:54, 2001/09/26
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE G95.T!
#
$(COMMDIR)/appcmn.$(OBJSUFF) \
$(COMMDIR)/choiccmn.$(OBJSUFF) \
$(COMMDIR)/clipcmn.$(OBJSUFF) \
+ $(COMMDIR)/clntdata.$(OBJSUFF) \
$(COMMDIR)/cmdline.$(OBJSUFF) \
$(COMMDIR)/cmdproc.$(OBJSUFF) \
$(COMMDIR)/cmndata.$(OBJSUFF) \
-# This file was automatically generated by tmake at 14:54, 2001/09/26
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE SC.T!
# Symantec C++ makefile for the msw objects
$(COMMDIR)\appcmn.obj \
$(COMMDIR)\choiccmn.obj \
$(COMMDIR)\clipcmn.obj \
+ $(COMMDIR)\clntdata.obj \
$(COMMDIR)\cmdline.obj \
$(COMMDIR)\cmdproc.obj \
$(COMMDIR)\cmndata.obj \
-# This file was automatically generated by tmake at 10:56, 2001/10/08
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE VC.T!
# File: makefile.vc
$(COMMDIR)\$D\appcmn.obj \
$(COMMDIR)\$D\choiccmn.obj \
$(COMMDIR)\$D\clipcmn.obj \
+ $(COMMDIR)\$D\clntdata.obj \
$(COMMDIR)\$D\cmdline.obj \
$(COMMDIR)\$D\cmdproc.obj \
$(COMMDIR)\$D\cmndata.obj \
#!/binb/wmake.exe
-# This file was automatically generated by tmake at 14:54, 2001/09/26
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE WAT.T!
#
appcmn.obj &
choiccmn.obj &
clipcmn.obj &
+ clntdata.obj &
cmdline.obj &
cmdproc.obj &
cmndata.obj &
clipcmn.obj: $(COMMDIR)\clipcmn.cpp
*$(CCC) $(CPPFLAGS) $(IFLAGS) $<
+clntdata.obj: $(COMMDIR)\clntdata.cpp
+ *$(CCC) $(CPPFLAGS) $(IFLAGS) $<
+
cmdline.obj: $(COMMDIR)\cmdline.cpp
*$(CCC) $(CPPFLAGS) $(IFLAGS) $<
-# This file was automatically generated by tmake at 16:58, 2001/09/21
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE OS2.T!
ALL_SOURCES = \
generic/busyinfo.cpp \
common/appcmn.cpp \
common/choiccmn.cpp \
common/clipcmn.cpp \
+ common/clntdata.cpp \
common/cmdline.cpp \
common/cmdproc.cpp \
common/cmndata.cpp \
choicdlg.h \
choice.h \
clipbrd.h \
+ clntdata.h \
cmdline.h \
+ cmdproc.h \
cmndata.h \
colordlg.h \
colour.h \
generic/progdlgg.h \
generic/sashwin.h \
generic/scrolwin.h \
+ generic/spinctlg.h \
generic/splash.h \
generic/splitter.h \
generic/statusbr.h \
appcmn.o \
choiccmn.o \
clipcmn.o \
+ clntdata.o \
cmdline.o \
cmdproc.o \
cmndata.o \
-# This file was automatically generated by tmake at 11:01, 2001/09/25
+# This file was automatically generated by tmake at 14:59, 2001/10/09
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNIV.T!
UNIVOBJS = \
bmpbuttn.o \
checkbox.o \
checklst.o \
colschem.o \
+ combobox.o \
control.o \
dialog.o \
framuniv.o \