Robin Dunn
da906b9742
Added effects.h to filelist.txt so it will get installed, fixed a
...
syntax problem in makeall.sh, regenerated all makefiles and etc.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17000 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-05 20:54:30 +00:00
Julian Smart
e015d1f7da
Applied patch [ 603858 ] wxTextCtrl text alignment patch
...
Benjamin I. Williams
This patch implements three new flags for the
wxTextCtrl control. The flags are wxTE_LEFT,
wxTE_CENTRE, and wxTE_RIGHT. These flags can change
the way text is aligned inside an edit control, which
is useful when the user is editing numbers or dates.
At Vadim's recommendation, the patch implements the
alignment flags so they are equal to the corresponding
wxALIGN_* value. wxTE_LEFT is actually 0x0000, and is
just a place holder. wxTE_CENTRE is equal to
wx_ALIGN_CENTER_HORIZONTAL (0x0100), and wxTE_RIGHT is
equal to wxALIGN_RIGHT (0x0100). I couldn't agree more
with this idea.
As Vadim pointed out, choosing to set the text
alignment flags to the corresponding wxALIGN_* flags
has a slight negative side effect: the values 0x0100
and 0x0200 collide with the existing flags
wxTE_NO_VSCROLL and wxTE_AUTO_SCROLL. A valid point
was raised, however, which stated that the flags would
never really be used at the same time, and also that
wxTE_AUTO_SCROLL is (possibly) going to be deprecated
anyway.
While this collision is not really a problem, I didn't
like the idea of someone specifying wxTE_NO_VSCROLL and
ending up with with a centered text control ! Thus, I
chose to move both wxTE_NO_VSCROLL and wxTE_AUTO_SCROLL
down to the free bits 0x0002 and 0x0008, respectively.
I'll leave the final say up to Vadim and the rest of
you whether you want to move these flags down or keep
them where they are (with collisions). What truly
matters to me is that I can now create text controls
with the proper alignment!
This patch also updates the documentation.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16989 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-05 16:15:30 +00:00
Václav Slavík
7e2f4683db
why the heck was the flag changed to T from Theme?! Broke my makefiles...
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-04 22:07:19 +00:00
Václav Slavík
a682b31c35
added watmgl.t to Makefile
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16977 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-04 22:07:00 +00:00
Chris Elliott
95f102ab59
Introducing wxBase for borland based on Michael Fieldings patch 598106
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16960 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-04 10:47:11 +00:00
Chris Elliott
cc77c86d1e
Michael Fieldings patch 598106 applied in part
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16935 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-02 12:52:32 +00:00
Julian Smart
a165a5dd04
Script updates
...
Addition of wxOS2 configure files
required for distribution
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16852 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-29 13:52:26 +00:00
Julian Smart
f9ceab7ce6
Ditribution script mods;
...
Use wxImageList instead of wxGenericImageList where possible
in wxListCtrl
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-28 08:54:00 +00:00
Stefan Neis
71c3227ddc
For now, use generic dirdlg for wxOS2.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16766 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-25 17:12:54 +00:00
Julian Smart
3f2b72b240
Attempts to reduce errors in compile farm for
...
unusual combinations of platform/app
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16729 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-24 10:01:47 +00:00
Julian Smart
1fc32b12ee
Misc mods for feedback from Marcin Wojdyr <wojdyr@if.pw.edu.pl>
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16702 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-23 11:57:10 +00:00
Julian Smart
fde719f935
Updated release scripts
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16701 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-23 11:29:27 +00:00
Julian Smart
146f8b59b3
Added CW for Mac list file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16690 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-22 21:22:33 +00:00
Julian Smart
c832ef4985
Applied patch [ 598016 ] remove flicker during combo box creation
...
By Benjamin I. Williams (biwillia76)
The attached patch completely fixes the flicker problem when
creating combo boxes. It also will make it elementary to
remove flicker during the creation of other controls
(although all the other controls are flicker free, AFAIK).
It does this by adding an optional 'visible' parameter to
the internal MSWCreateControl method, whereby the caller can
create a control invisibly by default, perform some
complicated sizing calculations, and then finally show the
control before the Create finished.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16676 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-22 09:41:05 +00:00
Julian Smart
c9b3918ae4
OpenGL off by default on Mac, correct scripts to
...
copy setup0.h
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-20 18:38:05 +00:00
Julian Smart
b5c702530e
Applied patch 548046: wxDebugAlloc & wxDebugFree thread safe
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16629 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-20 16:57:09 +00:00
Vadim Zeitlin
63bd679bc0
fixed Unicode wxBase config in VC6 project files, there was an extra quote which was completely confusing the compiler
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-20 14:56:45 +00:00
Julian Smart
8dafe2c7d5
Incremented version number
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-20 11:51:14 +00:00
Julian Smart
b9f933ab5d
Applied patch [ 597398 ] Generic MDI, wxNotebook based.
...
By Hans Van Leemputten (hansvl)
- This patch implements a generic notebook based mdi,
due to that wxMDIChildFrame could not derive from
wxFrame some things in the samples and in the docmdi
classes needed to be adjusted... basically this comes
down to not do (wxFrame *) but instead do
(wxMDIChildFrame *), or store a pointer to the frame in a
wxWindow* instead of a wxFrame variable...
- The main reason wxMDIChildFrame cannot derive from
wxFrame is that it would take to much platform specific
functions to be overwritten (= lot of ifdef's). This then
couldn't be called generic anymore, so that's why we
need to derive from wxPanel...
- Tested on/with:
1. wxMSW (I disabled the MSW MDI implementation to
be able to test it), tested it with the MDI sample,
docvwmdi sample and docview sample and also tested it
with wxWorkshop. (test = compile and run)
2. wxX11, tested with the same set wxWin samples as
the wxMSW test. I also compiled wxWorkshop with it,
but could not run wxWorkshop due to some issue not
related to the MDI implementation.
- How to apply:
* Apply the patch
* move mdig.cpp into wxWindows/src/generic/
* move mdig.h into wxWindows/include/wx/generic/
- Some extra things that still need to be done:
* File lists, project files should be updated to include
mdig.cpp (the patch only change this on wxX11)
* The configuration script should be updated.
* Maybe wxUSE_GENERIC_MDI_ARCHITECTURE also
should be added so it is only included when wanted...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16610 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-20 09:09:55 +00:00
Julian Smart
1241ab8ba0
Added EVT_JOY_BUTTON_... macros as per the manual,
...
retained the old names for compatibility.
Changed 2.3.2 to 2.3.3 in a couple of files.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16598 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-19 16:09:40 +00:00
Julian Smart
316df2f209
Removed an old email address
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16597 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-19 10:03:20 +00:00
Julian Smart
c482b99ec9
Use wxGenericImageList for wxMSW/wxUniv now; this
...
allows us to remove the MSW-specific code in wxUniv's wxNotebook
(maybe elsewhere?)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16590 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-18 22:42:58 +00:00
Julian Smart
7be6137a8c
Further installation fixes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16589 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-18 18:24:23 +00:00
Julian Smart
e492150d40
Corrected HTML index, other distro-related tweaks
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-18 14:10:52 +00:00
Julian Smart
94d8612744
Removed excess distribution archives
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16571 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-17 17:29:57 +00:00
Julian Smart
d7ada45299
Script mods
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16567 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-17 12:11:41 +00:00
Julian Smart
06bb3c60d1
Remove mmedia makefile for wxMac
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-17 11:31:57 +00:00
Julian Smart
ab9ed7a58c
Removed all trace of richedit from scripts
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-17 07:44:19 +00:00
Julian Smart
dba860d9e4
More script tweaks
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-16 22:29:52 +00:00
Julian Smart
674fdaba5c
Tweaks to distrib scripts
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-16 20:41:30 +00:00
Julian Smart
332b8edbdc
Script tweaks
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-16 17:08:47 +00:00
Julian Smart
8f8edad80e
Fix for Unices with small command line space
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16544 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-16 12:22:23 +00:00
Julian Smart
38be1092b6
Added wxMac distrib to tardist
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16543 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-16 11:39:11 +00:00
Vadim Zeitlin
110d05999f
fixed the paths of the theme files in the VC++ wxUniv project
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-14 22:29:58 +00:00
Vadim Zeitlin
dd81d20292
added a 1 line script to generate the tags file for wxMSW
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16506 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-14 15:04:04 +00:00
Julian Smart
71cffa9f0f
Applied patch [ 587723 ] Update to cw.rsp file
...
I've updated the file so it captures all the files that are
unique to the wxMSW + CW combination.
Even though not all of the samples have CW project
files, all the samples are listed in the rsp. That way if
more samples get project files prior to release 2.3.x or
2.4, there will be no need to modify this file.
I did, however, remove all of the util sub-directories from
cw.rsp because none of the util sub-directories have any
CW project files (and I don't foresee adding any ;)
Igor Mikolic-Torreira
igormt@alumni.caltech.edu
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-08 09:44:32 +00:00
Julian Smart
a437860367
Updated file list
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16391 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-07 15:56:02 +00:00
Julian Smart
eefc691533
Added files to Tex2RTF file list
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-07 15:48:29 +00:00
Gilles Depeyrot
1327357121
add spinctrl header for wxMac
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16360 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-08-04 13:02:23 +00:00
Julian Smart
e81a301cbd
Added wx/listbase.h with wxListCtrl types, so we can
...
have wxGenericListCtrl available on all platforms
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16330 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-30 19:04:18 +00:00
David Webster
abe8f53355
os2 distribution response file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16326 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-30 14:13:48 +00:00
Mattia Barbon
835ce09e8d
Added statline.h to wxMotif files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16296 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-27 20:24:44 +00:00
Mattia Barbon
74698d3a22
Added wxMessageOutput as per the discussion on wx-dev.
...
Added wxApp::DoInit to initialize the global wxMessageOutput instance.
Changed wxCommandLineParser to use wxMessageOutput.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16267 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-24 19:29:53 +00:00
Václav Slavík
de81a4f086
dde.cpp is lowlevel file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16208 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-19 11:27:40 +00:00
Julian Smart
14a63cb7f4
Added helpview to distrib lists
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16191 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-16 10:05:25 +00:00
Julian Smart
42d67b6162
Added files.lst to wxMotif distribution.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-08 10:23:40 +00:00
Mattia Barbon
658e863a99
Fix MinGW compilation in some corner cases
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-06 12:43:28 +00:00
Julian Smart
cd5082468f
Updated script + FAQs
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16036 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-04 09:38:39 +00:00
Mattia Barbon
46c0c2dcf2
Updated Makefiles for MinGW GCC 3.1
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16026 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-07-03 21:46:28 +00:00
Julian Smart
2c183404b3
Added SVG to distribution scripts
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-06-19 10:19:09 +00:00
Chris Elliott
affb67e18d
patch fixing b32 makefile (sourceforge Bugs item #566439 )
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15864 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-06-17 09:07:38 +00:00
Mattia Barbon
9954786be2
Better detection for Cygwin; thanks to Oscar Fuentes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15854 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-06-15 14:58:47 +00:00
Chris Elliott
17a2362b6f
tmake files for wxUniversal and Borland/MSW
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15837 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-06-14 13:03:45 +00:00
Vadim Zeitlin
b33911eef0
added thrimpl.cp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-06-07 21:26:55 +00:00
Vadim Zeitlin
76484b2495
patch 562893: bug in dll makefile.b32
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-06-07 21:17:06 +00:00
Gilles Depeyrot
5266a98339
added handling of -undefined and -flat_namespace options
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15435 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-08 17:13:13 +00:00
Vadim Zeitlin
3a03c143c0
added src/msw/popupwin.cpp to the makefiles
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15416 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-07 23:29:03 +00:00
Vadim Zeitlin
dfee19edbc
fixed typos and tmakecmd/TMAKE/TM confusion
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-07 23:16:29 +00:00
Vadim Zeitlin
26ddbfd329
Added wx/build.h
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15410 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-07 19:59:24 +00:00
Gilles Depeyrot
d5b7a47296
script to link a mach-o dynamic shared library for Darwin / Mac OS X
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15390 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-05 19:56:15 +00:00
Robert Roebling
c15521c67e
Added screen design to system settings for
...
different dialog layouts on desktop vs
PDA screens
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15376 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-04 18:33:35 +00:00
Vadim Zeitlin
6b6fc9b0a0
you don't have to set BCCDIR for compilation with Borland any longer (patch 550105)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15335 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-02 13:56:41 +00:00
Vadim Zeitlin
b763ff4386
fixed the wrong custom build messages
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15321 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-05-01 16:13:48 +00:00
Vadim Zeitlin
4deae7a033
ARCHINCDIR must be defined in makeb32.env, not makefile.b32 (patch 548990)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-27 10:38:48 +00:00
Václav Slavík
7391216edc
added wx/msw/missing.h
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-23 16:18:26 +00:00
Julian Smart
9fd9e47a93
wxUniversal fixes:
...
window.cpp's WM_CLOSE now calls Close() for wxUniv, else dialogs/
frames won't get closed using system menu/button.
Added missing NULL init for m_artProvider in themes to cure crash
Added 2 sample dsp files for wxUniv (not ideal perhaps but
it will save these getting lost, and much user frustration)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15231 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-22 09:09:40 +00:00
Vadim Zeitlin
92fe4afea6
fixes for BCC makefiles from Chris (patch 544015)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15146 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-15 18:43:48 +00:00
Vadim Zeitlin
d5172a588c
added wx/ipc.h and used/documented it
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15144 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-15 18:24:46 +00:00
Julian Smart
bb28b47763
Applied docview patch
...
Removed richedit sample compilation
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15112 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-12 13:15:44 +00:00
Julian Smart
6aa3ea889a
Added back the missing Undo/Redo accelerators that unaccountably
...
went missing after 2.3.1
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15096 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-11 16:50:55 +00:00
Robert Roebling
67d947ba89
Added "metal" theme.
...
Added bool param to wxUniv indicating if the controls
takes its background from the parent (such as
static texts, radio buttons etc).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-10 20:38:15 +00:00
Julian Smart
171fe25be9
Removed redundant project file
...
Updated release scripts
Reduced widgets sample size
Put back some conditional compilation for dir ctrl style
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15053 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-09 14:40:22 +00:00
Julian Smart
7ff3f36748
Added dependencies to .dsw file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15041 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-08 20:39:27 +00:00
Julian Smart
4e4dc03dcc
Added define to STC VC++ project file
...
Ming/Cygwin makeprog.env clean target now cleans .exes
Edited version in install.txt
Copied HTML files from web files
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15039 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-08 20:17:40 +00:00
Julian Smart
4d50d6840a
More BC++ makefile tweaks
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15037 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-08 17:15:58 +00:00
Julian Smart
9f24e0b5b4
BC++ 32-bit makefile now copies setup.h to the correct place
...
Fixed compilo in treetest.cpp
Fixed version numbers in make*.env
Added dummy keyboard.rc so makefile.vc works
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15028 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-08 14:12:56 +00:00
Julian Smart
12d1ab44bb
Fixed some bit-rot problems in contribs
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15009 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-07 22:58:16 +00:00
Julian Smart
15bee36fdf
Removed leaks from Forty demo
...
Added VC++ project file for artprov sample
Updated file lists
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15004 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-07 21:12:45 +00:00
Julian Smart
69477ac449
Version updates, manual date change, no change to dragimmg.cpp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14991 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-07 17:09:26 +00:00
Julian Smart
65e5084827
Added wxTB_NODIVIDER and wxTB_NOALIGN so native Windows toolbar can
...
used in FL.
Adjusted Windows toolbar height for wxTB_NODIVIDER style.
Removed some false memory leak reporting from fontmap.cpp, mimecmn.cpp,
strconv.cpp.
Added and used MapBitmap function in newbmpbtn.cpp so the right
colours are used under Windows.
<controversial>Added iniconf.cpp to WIN32 compilation</conroversial>
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14936 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-04 13:13:51 +00:00
Julian Smart
0fa784572f
Separated wxImage::FloodFill from image.cpp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14897 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-01 22:14:42 +00:00
Julian Smart
b1699cd397
Applied FloodFill patch
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-01 21:40:42 +00:00
Robert Roebling
4175e95227
Temporarily use self-made wxTextCtrl in wxX11 until
...
the in /src/univ.cpp works better.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-04-01 11:41:59 +00:00
Robin Dunn
2417bf69de
Set flags and libs for using unicows if MSLU=1
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14868 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-30 01:18:03 +00:00
Vadim Zeitlin
a448a02f28
fixed typos in Unicode configs of wxBase (thanks Dimitri)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14834 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-28 12:07:04 +00:00
Vadim Zeitlin
cebab22d9e
fix for building in a directory with a long name (patch 534399)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14820 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-27 18:39:03 +00:00
Mattia Barbon
f618020a15
wxIconBundle implementation.
...
wxTLW::SetIcons() properly implemented for wxMotif, wxGTK, wxMSW, wxX11, wxUniversal
Placeholders that just call SetIcon for wxOS2 and wxMac.
Regenerated makefiles.
Added hardwired wxSYS_ICON_X/Y = 32 for wxGTK.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-26 21:54:23 +00:00
Julian Smart
733342af30
Updated art filespec
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14761 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-24 10:31:30 +00:00
Julian Smart
4869c7dbc0
Updated release scripts
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14760 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-24 10:29:38 +00:00
Julian Smart
e564aa153e
Removed helpwxht.h/cpp (old wxHelpControllerHtml class)
...
and updated makefiles accordingly
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-22 22:29:20 +00:00
Václav Slavík
f435c1f030
added wxArtProvider
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14711 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-21 23:39:57 +00:00
Julian Smart
2c7b88e68c
Added wxX11 to readme
...
Distribution script mods
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14705 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-21 15:32:39 +00:00
Julian Smart
618f2efa41
Added __WXX11__ tests where appropriate
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-21 10:32:18 +00:00
Vadim Zeitlin
d65c269b3f
1. implemented radio menu items for wxGTK
...
2. changed (in most cases blindly) code for all the others
3. added wx/features.h
4. update wxMenu[Item] docs
----------------------------------------------------------------------
Committing in .
Modified Files:
distrib/msw/tmake/filelist.txt docs/changes.txt
docs/latex/wx/menu.tex docs/latex/wx/menuitem.tex
include/wx/defs.h include/wx/menu.h include/wx/menuitem.h
include/wx/gtk/menu.h include/wx/gtk/menuitem.h
include/wx/mac/menuitem.h include/wx/motif/menuitem.h
include/wx/msw/menuitem.h include/wx/os2/MENUITEM.H
include/wx/univ/menuitem.h samples/menu/menu.cpp
src/common/menucmn.cpp src/gtk/menu.cpp src/mac/menuitem.cpp
src/motif/menuitem.cpp src/msw/menuitem.cpp
src/os2/MENUITEM.CPP src/univ/menu.cpp
Added Files:
include/wx/features.h
----------------------------------------------------------------------
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14674 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-18 19:41:35 +00:00
Ron Lee
67e2efca87
Added wxBufferedDC class.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-17 06:34:06 +00:00
Václav Slavík
300b5dfabc
use wxUniv's setup
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-17 00:52:43 +00:00
Julian Smart
c978d36124
Added reparenting helper classes to help apps to grab the windows
...
of other applications.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14524 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-09 21:51:10 +00:00
Julian Smart
a5938d5945
Removed obsolete -WE flags from WIN32 BC++ makefiles
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14440 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-03-04 07:52:05 +00:00
Julian Smart
c2ff68d3fd
Got dialog sizing to work, downsized fonts a bit (though it always returns
...
the same standard font right now)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14415 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-26 21:58:07 +00:00
Robert Roebling
c08a4f0068
Added simplistic wxToolBar to wxUniversal. It
...
still corrupts the non-client area.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14394 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-24 19:49:36 +00:00
Robert Roebling
9691c806e6
Implemented a simple modality under X11.
...
Filled wxDataFormat and wxDataObject etc.
Added skeleton for X11 clipboard.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14370 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-23 21:26:16 +00:00
Václav Slavík
3d5231db07
more MSLU fixes and moved MSLU stuff into separate file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14290 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-17 23:29:25 +00:00
Václav Slavík
a0cb0ba509
move wxMGL's wxTimer to src/generic
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14275 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-17 14:55:41 +00:00
Mattia Barbon
1952358f23
spaces -> TAB
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14243 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-15 22:08:38 +00:00
Julian Smart
256d631aaf
Started some NanoX work (blind to begin with)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14224 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-15 11:14:42 +00:00
Vadim Zeitlin
7183fd726e
added wxFSVolume patch from George Policello (untested, unreferenced from the project files yet)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14185 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-13 21:01:50 +00:00
Vadim Zeitlin
5f02e46732
do NOT hard code univ sources in x11 port
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-13 16:33:09 +00:00
Julian Smart
df9958f25a
Added list of wxX11 files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14173 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-13 16:24:14 +00:00
Julian Smart
5e29f97a3c
Added shared private declarations header privx.h, utils.cpp now shared
...
between wxMotif and wxX11; added some TODOs to toplevel.cpp, popupwin.cpp
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-13 16:17:29 +00:00
Robert Roebling
8354aa92a1
wxX11: link errors down to 1.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14117 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-10 23:31:24 +00:00
Julian Smart
1246e28fb0
Added wxPopupWindow skeleton (no implementation yet)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14116 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-10 23:21:44 +00:00
Robert Roebling
bafb8cdde4
More make install tweaks.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14115 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-10 21:54:40 +00:00
Robert Roebling
4d7289e6b0
wxX11 compiles and links now. I wonder why there is
...
no wxToolBar class in /src/univ, though.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14103 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-10 14:31:12 +00:00
Robert Roebling
be0a4b9a2e
X11 make stuff.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-09 19:39:20 +00:00
Robert Roebling
49f7215796
Updates to tmake for X11. Damn lock in CVS.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14082 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-09 18:43:37 +00:00
Julian Smart
7266b67235
Now compiling
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14068 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-08 17:44:23 +00:00
Julian Smart
39353a1c1c
Added evtloop.cpp to file list, added X11 to makeall
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14066 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-08 12:56:26 +00:00
Julian Smart
45ce82f320
Fixes for X11 builds
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14053 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-07 14:51:23 +00:00
Julian Smart
7c7b95f47a
Added x11.t, changes to other config files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-07 13:45:14 +00:00
Mattia Barbon
c448540d81
* SPACE -> TAB in filelist.txt
...
* Added wxBase support to makefile.g95 makeg95.env
* Added FINAL=0|1 flag to makefile.g95 ( defaults to FINAL=0 )
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14021 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-05 21:35:10 +00:00
George Tasker
56c3554ccc
Added isql.h and isqlext.h to the "Base" target
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-03 12:25:46 +00:00
Václav Slavík
0f04dbf324
generated makefiles no longer contain information about when they were generated
...
(you can still get this information from CVS/Entries and there will be fewer bogus revisions)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13975 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-02-02 23:15:23 +00:00
Julian Smart
ea45082521
Applied hash copy fix, BC++ makefile fix (though not the lib setup.h one we need to do).
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-31 23:13:06 +00:00
Julian Smart
6e8515a3e3
Regenerated FL docs; applied patch [ #511363 ] Dialogs no longer need wx.rc
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13938 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-31 20:57:31 +00:00
Julian Smart
a7872dcd74
Removed references to helpxlp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13922 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-29 23:21:50 +00:00
Mattia Barbon
f21a3c4198
Updated target list in Makefile
...
Corrected comment in base.t ( creates src/files.lst, not src/common/files.lst )
Added new files to filelist.txt.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13915 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-29 21:35:01 +00:00
Julian Smart
c72fd53269
Updated vc.rsp file to include console.dsp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13905 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-29 10:32:24 +00:00
Vadim Zeitlin
a664d17e06
removed non existing unzip.h from the filelist.txt and regenerated everything
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13884 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-28 16:45:49 +00:00
Julian Smart
d8908b52e6
Small doc changes and added missing files.lst to contrib.rsp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-26 21:52:55 +00:00
Vadim Zeitlin
9b69526274
install wxUniv headers in make install and include wxUniv sources in make dist
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13808 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-25 16:04:42 +00:00
Václav Slavík
c44fdc9401
added dummy <style> handler in order to hide CSS code
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13780 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-24 21:13:38 +00:00
Stefan Neis
b07a1cb525
Added toplevel.{h,c} to OS/2 files.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13707 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-20 21:43:17 +00:00
Julian Smart
847341dbeb
Updated VC++ files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13631 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-18 14:33:01 +00:00
Václav Slavík
63f8abca79
fixed to the IFF handler, moved into one file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-17 19:40:18 +00:00
Václav Slavík
2eebeb077b
wxMGL Watcom makefiles fixes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13609 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-17 00:18:09 +00:00
Robin Dunn
6556acfa56
Added wx/dirctrl.h to filelist.txt so it will get installed.
...
Regenerated makefiles and such.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13592 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-16 01:01:00 +00:00
Vadim Zeitlin
a53e32df70
added WXDIRREL needed for contrib samples
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-16 00:45:57 +00:00
George Tasker
b311dc08be
dummy(dll).obj is now created in wxWin/$D rather than wxWin/src/msw/$D
...
makefile.vc and makebase.vc no longer override the location of dummy(dll).obj that is specified in makevc.env
if wxWin/include/wx/msw/setup.h does not exist, setup0.h is copied to setup.h
[BASE builds]setup.h is no longer used from wxWin/include/wx, it is now used just like with makefile.vc. setup.h is copied from wxWin/include/wx/msw into wxWin/lib/base(d)/wx and all references to setup.h now read this location
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-15 20:32:23 +00:00
George Tasker
2557f8d858
Changed version to 233
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13586 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-15 20:28:00 +00:00
Robert Roebling
4b6b4dfcf4
Added IFF handler.
...
Minor doc updates.
Corrected configure for SGI OpenGL (wx-config related).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13585 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-15 17:57:08 +00:00
Vadim Zeitlin
ab2a521063
added more files to wxBase distrib (and unzip.h to the filelist)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13583 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-15 17:04:33 +00:00
Vadim Zeitlin
40302bb5c8
winundef.h is needed for wxBase as well
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13480 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-09 13:09:06 +00:00
Vadim Zeitlin
2c36ec29ca
copy dummy*.cpp files as well
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-09 13:04:37 +00:00
Gilles Depeyrot
2ed76cd9b7
wxGenericDirDialog related corrections for wxMac
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13453 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-08 22:05:42 +00:00
Václav Slavík
34885a147b
use UNIX wxDir if available
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-08 18:03:14 +00:00
Robin Dunn
e84d9dfaf6
Clean up $(WXDIR)\$D too
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-07 18:35:37 +00:00
Julian Smart
abad53678b
Corrected (maybe) the object.h token syntax; corrected typo in makefile.g95
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-04 14:18:59 +00:00
Václav Slavík
6a253da1fb
(Hopefully) fixed bad MSW makefiles (Vadim, can you please check if I haven't screw up something in that executable noise?)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13345 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-03 23:08:41 +00:00
Vadim Zeitlin
15ce54dae1
fixed NotMSW flag handling in the common files (now for the makefiles)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13316 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-02 23:08:56 +00:00
Vadim Zeitlin
bb16e81453
fixed NotMSW flag handling in the common files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13315 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-02 23:05:22 +00:00
Václav Slavík
a7061e3dc0
wrong directory
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13308 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-01-01 23:14:11 +00:00
Václav Slavík
1daa0751db
remove settings.h from wxGTK
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-31 11:56:51 +00:00
Václav Slavík
6415c4fe8a
cosmetic fix to bmpbase.cpp entry
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13262 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-31 00:50:42 +00:00
Vadim Zeitlin
7516ed26c9
1. wxSystemSettings class API face lift: better names for its methods
...
2. wxSystemSettings under wxUniv uses the wxTheme and wxColourScheme
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-30 22:34:36 +00:00
Julian Smart
62e1ba759a
More tweaks to wxMicroWi
...
More tweaks to MicroWindows
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-22 19:43:44 +00:00
Robert Roebling
631748a7f9
Removed two more files from wxMicroWindows compilation.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13157 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-21 22:26:54 +00:00
Robert Roebling
79d8a51cb2
Forgot to add this one.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13151 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-21 19:28:36 +00:00
Robert Roebling
1725144d37
Added configure support for wxMicroWindows.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13150 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-21 19:22:48 +00:00
Julian Smart
9ed42c2d63
Patch mods
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-19 23:32:48 +00:00
Julian Smart
922ba68045
Emptied patch.rsp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13091 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-19 13:37:26 +00:00
Ron Lee
0b9ab0bd82
Added new dynamic loading classes. (which handle proper
...
wxRTTI and wxModule initialisation and unloading)
Removed serialisation code from wxObject and elsewhere.
Added USER_EXPORTED hash and list macros.
Added *_PLUGGABLE_CLASS defines for exporting dynamic wxObjects
from dlls.
----------------------------------------------------------------------
Modified Files:
Makefile.in configure configure.in setup.h.in debian/changelog
distrib/msw/tmake/filelist.txt include/wx/defs.h
include/wx/docview.h include/wx/dynlib.h include/wx/fileconf.h
include/wx/hash.h include/wx/list.h include/wx/module.h
include/wx/object.h include/wx/resource.h include/wx/stream.h
include/wx/gtk/setup0.h include/wx/msw/setup0.h src/files.lst
src/wxBase.dsp src/wxUniv.dsp src/wxWindows.dsp
src/common/dynlib.cpp src/common/filename.cpp
src/common/module.cpp src/common/object.cpp
src/common/stream.cpp src/gtk/files.lst src/mac/files.lst
src/mgl/files.lst src/mgl/makefile.wat src/motif/files.lst
src/msw/dialup.cpp src/msw/files.lst src/msw/helpchm.cpp
src/msw/makefile.b32 src/msw/makefile.bcc src/msw/makefile.dos
src/msw/makefile.g95 src/msw/makefile.sc src/msw/makefile.vc
src/msw/makefile.wat src/os2/files.lst src/univ/files.lst
Added Files:
include/wx/dynload.h src/common/dynload.cpp
Removed Files:
include/wx/objstrm.h include/wx/serbase.h
src/common/objstrm.cpp src/common/serbase.cpp
utils/serialize/.cvsignore utils/serialize/makefile.b32
utils/serialize/sercore.cpp utils/serialize/sercore.h
utils/serialize/serctrl.cpp utils/serialize/serctrl.h
utils/serialize/serext.cpp utils/serialize/serext.h
utils/serialize/sergdi.cpp utils/serialize/sergdi.h
utils/serialize/sermain.cpp utils/serialize/serwnd.cpp
utils/serialize/serwnd.h
----------------------------------------------------------------------
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13088 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-19 07:09:58 +00:00
Julian Smart
b59da6c285
Minor doc changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13079 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-18 20:25:32 +00:00
Václav Slavík
f05605ff4d
fixes to wxMGL build
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13007 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-14 19:24:04 +00:00
Vadim Zeitlin
6d7f865fb0
extremely dumb script to create wxBase distrib
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-12 00:36:25 +00:00
Ron Lee
abfc2b1d5a
added deps for .t files so make works correctly when you edit them.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-10 01:50:09 +00:00
Václav Slavík
f17fb29767
added wxMGL+DOS+Watcom makefiles
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-09 15:38:31 +00:00
Václav Slavík
810aa7fc7f
fixes for setup.h handling in Watcom makefiles
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-08 23:28:29 +00:00
Julian Smart
25ad2ac2fe
Corrected CVS commit clash; small doc changes (removed Windows 3.1 reference since
...
it's probably broken by now)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12929 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-08 18:14:57 +00:00
Julian Smart
8f3fc6b415
Added univ.rsp and included files in wxMSW distrib
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12880 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-05 13:30:34 +00:00
Julian Smart
c942560f94
Tried to fix makefile.g95
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-04 14:52:33 +00:00
Robin Dunn
42dd647cfd
Added a dependency for setup.h so it will be copied again if needed
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-12-01 20:58:08 +00:00
Vadim Zeitlin
835074fe0a
fixed the message when creating setup.h
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12681 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-25 14:41:21 +00:00
Julian Smart
4ed56ed897
Fixed Plot compilation, aliased OnScroll to HandleOnScroll
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12618 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-23 13:27:56 +00:00
Julian Smart
7aeb9adcaf
Added zip file containing DSW files for samples and demos
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-22 14:20:12 +00:00
Gilles Depeyrot
8d9e8770da
added missing joystick source file for wxMotif
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-21 20:51:16 +00:00
Václav Slavík
050c9e3c90
removed rpmfiles.lst
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-21 00:06:58 +00:00
Václav Slavík
8065aebc48
removed rpmfiles.lst
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12539 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-20 23:54:06 +00:00
Václav Slavík
32037c4ed9
fixes for wxBase RPM
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-20 23:50:32 +00:00
Julian Smart
6495f2dd5d
More project file fun
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-20 15:58:54 +00:00
Julian Smart
8b283bb88e
Misc fixes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12516 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-20 14:55:10 +00:00
Julian Smart
5638d705f5
Project file corrections, doc corrections
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12485 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-19 16:05:55 +00:00
Gilles Depeyrot
990578f892
removed include/wx/mac/setup.h from filelist.txt
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12472 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-18 08:00:07 +00:00
Ron Lee
c00f8e638a
Removed include/wx/setup.h from filelist.txt -- Needed for autotools build,
...
I don't _think_ it will break anything else..
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-18 02:57:51 +00:00
Václav Slavík
926592a8cf
added temporary implementation of wxChoice for wxUniv
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12464 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-17 23:13:55 +00:00
Vadim Zeitlin
a3a584a7a6
added wxTextBuffer and wxMemoryText which allow to use wxTextFile with in-memory data
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-14 20:40:20 +00:00
Vadim Zeitlin
8e7b0418f1
reset SourceSafe project name in the VC++ projects
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-09 10:19:31 +00:00
Mattia Barbon
6433f6d316
Last correction for makefile.g95: win32 mkdir does not like forward slashes as directory
...
separators.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12357 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-08 21:06:19 +00:00
Jouk Jansen
abfcca57dd
Committing in .
...
Modified Files:
wxWindows/descrip.mms wxWindows/setup.h_vms
wxWindows/distrib/msw/makefile.rsp
wxWindows/include/wx/dbgrid.h wxWindows/lib/vms_gtk.opt
wxWindows/samples/db/dbtest.cpp
wxWindows/src/common/descrip.mms
wxWindows/src/generic/descrip.mms
Added Files:
wxWindows/samples/dialup/descrip.mms
wxWindows/samples/docview/descrip.mms
wxWindows/samples/font/descrip.mms
dbgrid.h change as announced in the developer mailing list
various OpenVMS complile issues
----------------------------------------------------------------------
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12343 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-07 09:26:33 +00:00
Vadim Zeitlin
4eb1fe9da6
fixed wxUniv/GTK linking by getting rid of GENERICOBJS and putting them into GUIOBJS/GUI_LOWLEVEL_OBJS instead
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12337 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-06 16:31:31 +00:00
Robin Dunn
b403ab005c
Enabled wxPostscriptDC to be used in wxMSW, if wxUSE_POSTSCRIPT
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12288 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-03 20:31:07 +00:00
Robin Dunn
b6ea61a589
Create the directories fo rthe .pch, etc. files if it doesn't exist.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-11-02 01:34:37 +00:00
Vadim Zeitlin
7de3c4699f
fixed typos in wxBase template and project file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12224 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-31 02:23:26 +00:00
Vadim Zeitlin
10eb1f1eac
applied wxDirSelector() patch and regenerated the makefiles to include the new src/common/dseldlg.cpp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-30 16:58:42 +00:00
Vadim Zeitlin
176e7e8321
added wx/platform.h to the list of files and regenerated the makefiles
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12210 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-30 11:48:14 +00:00
Václav Slavík
c3c031dd1d
added msw/gccpriv.h and others to headers list
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12187 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-27 22:52:19 +00:00
Mattia Barbon
8b61ede4ab
Removed makefile.g295, added src/msw/files.lst
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-24 21:02:02 +00:00
Mattia Barbon
f676c7ffd5
* make install now installs OLE headers on cygwin
...
* cygwin now uses the same naming conventions for libraries as the
rest of wxMSW
* updated filelist.txt
* added code to filelist.t fo parse OLE headers
* all platforms using configure now have
--enable-no_rtti, --enable-no_exceptions on by default
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12160 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-24 20:41:34 +00:00
Mattia Barbon
b3bd664a90
Updated makefile.g95/vc to behave similarly to wxWindows.dsp WRT library names
...
and setup.h .
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12069 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-18 21:05:20 +00:00
Vadim Zeitlin
4fcf087dda
create lib\...\setup.h from setup.h, not setup0.h which is not meant to be edited
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12047 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-18 00:43:52 +00:00
Julian Smart
2f67ae898e
Applied patch sent to me for xpmdecod.cpp/VC++ compilation, and changed
...
VC++ project filenames in vc.rsp
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12041 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-17 13:35:42 +00:00
Jouk Jansen
61e6020f90
Committing in .
...
Modified Files:
wxWindows/descrip.mms wxWindows/setup.h_vms
wxWindows/distrib/msw/makefile.rsp
wxWindows/src/common/descrip.mms
Added Files:
wxWindows/samples/richedit/descrip.mms
Updated OpenVMS compile support
----------------------------------------------------------------------
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-16 06:14:26 +00:00
Václav Slavík
7f664d9878
compilation fix for wxMGL (NotUniv directive doesn't work and I'm too much of perl illiterate to fix it)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12013 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-15 22:47:34 +00:00
Václav Slavík
065f27fe3a
fixes to MSW LowLevel files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-14 22:53:48 +00:00
Vadim Zeitlin
71e030352d
1. added wxStatusBarUniv
...
2. several bug fixes to wxSpinButton/wxSpinCtrl
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11991 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-14 21:38:58 +00:00
Gilles Depeyrot
777db7a5bf
updated wxMac file list (use MoreFiles)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11971 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-13 21:05:56 +00:00
Gilles Depeyrot
293e425d0e
added MoreFiles sources to wxMac under Mac OS X
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11964 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-13 08:52:34 +00:00
Vadim Zeitlin
8976cbbc48
don't add /MT to CFLAGS explicitely
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-10 16:42:02 +00:00
Vadim Zeitlin
c5627cd855
added wx*.dsp files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-10 00:43:45 +00:00
Robin Dunn
88a9f974b8
Moved the [Set|Get]Client[Data|Object] and such out of wxWindowBase
...
and into a mixin class. Mixed it with wxEvtHandler. Regenerated
files lists and makefiles.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-09 22:50:33 +00:00
Gilles Depeyrot
4649b5eded
added missing generic include file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11895 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-08 21:08:16 +00:00
Robin Dunn
2431209ccd
More changes for building the regex lib
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-08 18:05:58 +00:00
Robin Dunn
9feee261c9
Fixed DLL linking. Was missing the regex lib.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11891 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-08 17:39:20 +00:00
Gilles Depeyrot
9b86543d92
added automatic generation of files.lst for wxMac
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11877 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-07 16:48:43 +00:00
Václav Slavík
3bfba010c7
no, wxComboBox is really NOT a low-level class (neither is wxChoice, for that matter, but filelist.txt pretends it is so that wxUniv can in turn pretend in can do wxChoices...)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11866 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-06 22:49:14 +00:00
Vadim Zeitlin
c6b0ee9abd
removed y_tab.c from wxUniv project files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-06 22:02:43 +00:00
Vadim Zeitlin
2aabc7da6a
allow setting the wxWin directory explicitly using WXDIR option, ..\.. by default
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-06 01:53:02 +00:00
Gilles Depeyrot
2b03b51b8c
added automatic generation of files.lst for wxMac
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11842 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-04 21:33:22 +00:00
Vadim Zeitlin
5e46051f91
added Unicode configurations to the library project files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-04 01:35:59 +00:00
Vadim Zeitlin
5f8dc32401
removed templates which are unneeded any more
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-04 00:30:38 +00:00
Vadim Zeitlin
b3ca11f706
fixed DLL naming scheme
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-03 14:20:44 +00:00
Vadim Zeitlin
17533c89d2
new VC++ templates and project files generated from them: now use only one
...
project file for wxWin itself and allow choosing the configurations to be
built from the sample projects
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11796 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-03 01:22:10 +00:00
Vadim Zeitlin
85f7ec579e
fix for using debug extra libs in release build and vice versa
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11785 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-02 16:28:14 +00:00
Vadim Zeitlin
89d25d58c5
first new sample project file - comments welcome
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11774 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-10-02 02:22:18 +00:00
Vadim Zeitlin
2d1e89de65
template for VC++ dsp for building wxUniv static lib
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-30 22:30:26 +00:00
Vadim Zeitlin
0797afee60
updated templates for creation of VC++ 6.0 project files for wxBase/wxMSW/wxUniv static and DLL builds
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-30 22:22:58 +00:00
Vadim Zeitlin
b584b7d24a
added GUI_LOWLEVEL_OBJS to src/msw/files.lst
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11743 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-30 14:53:57 +00:00
Vadim Zeitlin
8dc52d208e
templates for VC++ project files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11732 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-29 00:47:52 +00:00
Vadim Zeitlin
bed118ca9e
applied patch for regex building with BC++ (patch 463140)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-28 14:35:17 +00:00
Ron Lee
3a922bb4bd
More build system polishing.. mostly. Some stuff ported over from
...
recent changes to the 2.2 branch.
Rationalised the autoconf scripts again, removed lots of stuff that
shouldn't be there anymore and pounded the rest into an even tighter
furball. (There's more work to be done here, but we're getting there..)
Implemented the library naming scheme outlined in tn0012.txt -- introduced
'toolchain' and 'widget set' into the autoconf scripts, obsoleted the
top level wx/setup.h and much of the mess associated with it.
More changes for cross compiling and 2.3 debs.
s/burnt_name/soname/g ; s/CC/CXX/g ; s/CCC/CC/g ; Just because it's Right.
(Thanks Vadim for already doing *FLAGS..)
Fixed libfl Makefile to actually work.
Removed *_DEPS from tmake templates, in every case they can be determined
from the relevant *_OBJS
Added BASE_MSW_OBJS, a couple of missing #includes, some missing files to
the 'dist' targets, and fixed some compile warnings.
Changed setup.py to use wx-config --gl-libs instead of hard coded constants.
Modified Files:
Makefile.in configure configure.in setup.h.in wx-config.in
wxBase.spec wxGTK.spec wxMotif.spec
contrib/include/wx/applet/window.h contrib/src/Makefile.in
contrib/src/applet/appletwindow.cpp contrib/src/fl/Makefile.in
debian/changelog debian/control.in debian/libwxbase-dbg.dirs
debian/libwxbase-dbg.links debian/libwxbase-dbg.postinst
debian/libwxbase-dbg.prerm debian/libwxbase-dev.dirs
debian/libwxbase-dev.files debian/libwxbase-dev.links
debian/libwxbase-dev.postinst debian/libwxbase-dev.prerm
debian/libwxgtk-dbg.dirs debian/libwxgtk-dbg.links
debian/libwxgtk-dbg.postinst debian/libwxgtk-dbg.prerm
debian/libwxgtk-dev.dirs debian/libwxgtk-dev.files
debian/libwxgtk-dev.links debian/libwxgtk-dev.postinst
debian/libwxgtk-dev.prerm debian/rules
distrib/msw/tmake/base.t distrib/msw/tmake/gtk.t
distrib/msw/tmake/mgl.t distrib/msw/tmake/motif.t
distrib/msw/tmake/msw.t distrib/msw/tmake/os2.t
distrib/msw/tmake/univ.t docs/motif/install.txt
include/wx/msw/private.h include/wx/os2/SETUP.H
include/wx/os2/SETUP0.H samples/ipc/Makefile.in
samples/sockets/Makefile.in src/files.lst src/make.env.in
src/makelib.env.in src/makeprog.env.in src/common/strconv.cpp
src/gtk/files.lst src/mgl/files.lst src/motif/files.lst
src/msw/files.lst src/msw/gsocket.c src/msw/gsockmsw.c
src/msw/toplevel.cpp src/msw/utils.cpp src/os2/files.lst
src/univ/files.lst wxPython/setup.py
Added Files:
debian/libwxbase-msw-dev.dirs debian/libwxbase-msw-dev.links
debian/libwxbase-msw-dev.postinst
debian/libwxbase-msw-dev.prerm debian/libwxmsw-dev.dirs
debian/libwxmsw-dev.links debian/libwxmsw-dev.postinst
debian/libwxmsw-dev.prerm debian/wxwin-doc.doc-base
debian/wxwin-headers-msw.dirs
Removed Files:
debian/wxwin-doc.doc-base.in include/wx/setup.h
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11713 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-28 07:00:13 +00:00
Robin Dunn
34a1d7328f
Added MSW toplevel.cpp and regenerated makefiles and such.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11709 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-27 02:05:45 +00:00
Mattia Barbon
a8bf5281df
Forgot to update the template.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11675 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-23 15:28:07 +00:00
Václav Slavík
98ffddb1db
added wxInputConsumer to wxUniv
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-22 00:21:41 +00:00
Václav Slavík
45eb404791
wxUniversal doesn't need wxDialog and wxFrame from base port anymore
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-18 22:34:23 +00:00
Václav Slavík
97c70a028e
added toplevel.cpp
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-16 22:10:21 +00:00
Julian Smart
8d07927991
Small changes
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-06 12:09:24 +00:00
Václav Slavík
3d285623a7
finally applied the helpbest patch
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11534 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-09-01 12:59:08 +00:00
Julian Smart
decb3a6a16
Added Net library to contrib
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11431 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-21 09:11:20 +00:00
Václav Slavík
4fcf2d94aa
added evtlooop.cpp for mgl
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11342 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-09 22:42:38 +00:00
Vadim Zeitlin
456bc6d9b8
moved knd handling logic from wxPanel to wxControlContainer (sorry for
...
the dull name Julian ;-)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11289 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-06 00:49:59 +00:00
Václav Slavík
ff292c7b5b
fixed MGL files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11251 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-01 23:06:01 +00:00
Václav Slavík
7a0166faad
fixed mgl.t to not include paletteg.o (hey, reading these templates is better than Cryptonomicon...)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11245 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-01 22:55:02 +00:00
Václav Slavík
5620d8de24
added mgl.t to makeall.sh
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11243 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-01 22:54:43 +00:00
Julian Smart
ed45cddc9a
This time, changed the correct release script.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11238 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-01 16:59:09 +00:00
Julian Smart
99ed18be8a
Added progress dialog to project files; changed version in release script
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11237 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-01 16:58:20 +00:00
Vadim Zeitlin
8db37e0699
added generic implementation and documentation for wxFindReplaceDialog
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11232 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-08-01 14:55:03 +00:00
Julian Smart
37dd872003
Tweaks to fl project files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-07-25 13:17:35 +00:00
Gilles Depeyrot
1297ecfe31
removed inexistant header files
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11140 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-07-22 13:52:52 +00:00
Robin Dunn
8e673075f6
Added rules to build the regex library from the main makefile, if
...
needed.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-07-17 00:18:51 +00:00
Vadim Zeitlin
2bb1aac768
added regex to all the templates
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11027 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-07-13 23:16:12 +00:00
Vadim Zeitlin
6fe8b15355
popupcmn is needed by wxGTK too, why was it excluded?
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11024 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2001-07-13 20:54:06 +00:00