Vadim Zeitlin
b158f13e16
avoid bakefile warnings about actions unsupported in MSVS formats by not using them in this case (this doesn't change the generated project files anyhow)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57550 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-25 18:49:29 +00:00
Vadim Zeitlin
bb20575e6e
rename gsockmsw files to sockmsw
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57549 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-25 18:41:13 +00:00
Vadim Zeitlin
78c369345d
reverted f57547, NET_PLATFORM_HDR is used inside msvc-header
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57548 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-25 18:37:20 +00:00
Vadim Zeitlin
c80e740726
remove NET_PLATFORM_HDR which was unused and is unneeded
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-25 18:32:09 +00:00
Robert Roebling
2cdaa1dce3
Added clipboard sample check to configure.in, other changes after rebaking with Bakefile 0.25
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57498 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-22 14:03:09 +00:00
Robert Roebling
5fb2ea66c6
Added missing g to file name of headerctrlg.h
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57424 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-18 20:27:05 +00:00
Vadim Zeitlin
af67f39da8
added wxRearrange{List,Ctrl,Dialog} and use it in wxHeaderCtrl and wxGrid to provide a way to interactively customize the columns
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57379 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-16 23:56:56 +00:00
Vadim Zeitlin
e2bfe6731e
- Rewrite wxHeaderCtrl to be virtual-like: even if we don't need an infinite
...
number of columns in it, it turns out that getting column information from
the associated control is much easier than copying it into the control.
- Provide wxHeaderCtrlSimple derived class which can be used easily if
callback approach of wxHeaderCtrl is not needed.
- Because of wxHeaderCtrl virtualization, port-specific implementations of
wxHeaderColumn are not needed any more and were removed.
- Use wxHeaderCtrl in the generic wxDataViewCtrl: this means that column
events are broken right now in it as they haven't been implemented by
wxHeaderCtrl yet, this will be fixed a.s.a.p.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-07 14:47:55 +00:00
Francesco Montorsi
491c42d00f
fix description of wxconsole template; add description for wxgui template
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-05 17:25:13 +00:00
Vadim Zeitlin
56873923f3
extract (and expand and clean up and document) the header window implementation used inside the generic wxDataViewCtrl in a separate wxHeaderCtrl class which could be reused in (generic) wxListCtrl and, most importantly, wxGrid later
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57093 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-03 21:53:10 +00:00
Michael Wetherell
84056016e1
Switch off the tests on Windows and switch back on the email notifications.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-02 22:37:50 +00:00
Francesco Montorsi
0e0134acea
make WX_UNICODE default to 1 since ASCII build is now deprecated!
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57079 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-12-02 22:02:32 +00:00
Vadim Zeitlin
86c5b12b21
also rename gsocketiohandler.* to socketiohandler.* and move it to wxNet where it belongs
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56996 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-28 13:37:19 +00:00
Vadim Zeitlin
6091364135
rename various gsock* files to sock* (except for MSW where this will be done later)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-28 13:04:47 +00:00
Vadim Zeitlin
51fe4b60ab
Streamline wxSocket code: wxSocketBase now uses wxSocketImpl (previously known
...
as GSocket) which is a base class with various wxSocketImplXXX implementations
provided by different wxSocketManagers.
Share more code between ports (still not finished).
Refactor some code inside wxSocketImpl itself to be less redundant and fixed a
couple of minor bugs in the process.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56994 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-28 12:47:07 +00:00
Vadim Zeitlin
eb6a8d695e
don't use __thread keyword with g++ < 4 as it results in mysterious problems at link time related to thread-local static wxString::ms_cache
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-23 01:53:24 +00:00
Vadim Zeitlin
05622061c9
port updates for newer Intel compiler support from bakefile svn and rebake
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-17 22:29:05 +00:00
Vadim Zeitlin
411484436d
use -Woverloaded-virtual if g++ supports it
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56751 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-12 15:58:56 +00:00
Vadim Zeitlin
970a5babf7
use correct shared library extension for HP-UX on ia64 [forward port from the next bakefile version]
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56748 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-12 15:37:01 +00:00
Vadim Zeitlin
825dbe24d0
fix the dependencies directory name for traditional Unix compilers
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56739 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-12 11:54:41 +00:00
Vadim Zeitlin
79f0c45dc4
remove lines containing nothing but spaces: this is a (fatal) syntax error for HP-UX make
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-12 11:18:54 +00:00
Michael Wetherell
d1a4b6004a
Temporarily disable the email notifications as we're getting false ones from
...
the Windows slave.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-06 12:15:31 +00:00
Vadim Zeitlin
d2824cdb7f
Review/simplify/cleanup MDI classes for all platforms and introduce base
...
classes for wxMDI{Parent,Child}Frame and wxMDIClientWindow.
Also use generic MDI implementation for wxMotif as it seems to be more
functional and definitely is more maintained (we probably should use the
generic version for wxGTK too).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56674 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-04 02:46:19 +00:00
Vadim Zeitlin
2f4c5d0077
wx/tls.h belongs to base headers, not core ( #10148 )
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-11-03 12:47:56 +00:00
Vadim Zeitlin
506e9b7ed2
rebaked using bakefile 0.2.5
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56525 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-27 16:40:51 +00:00
Robert Roebling
4c332da033
Add more bakefile files to make dist
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56449 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-19 20:18:42 +00:00
Robert Roebling
4094f3f233
Added src/msw/version.rc to make win-dist
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56448 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-19 19:23:21 +00:00
Robert Roebling
4aa7709b73
Updates for make dist for OSX_CARBON
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56400 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-17 12:39:21 +00:00
Václav Slavík
a158acac6d
Cleaned up wxArtProvider:
...
1. Move platform-specific code for both GetSizeHint() and GetBitmap()
into platform-specific files.
2. Introduced GetNativeSizeHint() to make native sizes better accessible,
without having to understand weird GetSizeHint() semantics.
3. Fixed GetNativeSizeHint() to return sensible values in non-GTK ports;
it returns wxDefaultSize if it can't make a good guess instead of
returning arbitrary value.
4. Use 16x16 icons on MSW instead of 16x15: it works and is more
'natural' size.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-16 19:07:42 +00:00
Vadim Zeitlin
f7ca1dd416
fix PCH in VC8 projects (until the next rebake...)
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56362 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-16 16:20:31 +00:00
Robert Roebling
d1b80f2196
Update make dist
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56342 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-15 18:39:21 +00:00
Vadim Zeitlin
916eabe60e
add wxGenericStaticText ( #9656 )
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56242 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-12 13:04:00 +00:00
Václav Slavík
aa163cb549
removed a warning that should only be a FIXME
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-12 13:03:53 +00:00
Vadim Zeitlin
d8a16cc8c9
use /nologo nmake switch to avoid many annoying copyright notices in output
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56193 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-09 09:49:18 +00:00
Vadim Zeitlin
af31dd975b
exclude contrib from build for as long as there is no makefile.vc there
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56192 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-09 09:48:24 +00:00
Stefan Csomor
22a927e426
forgot to commit this file ...
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56185 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-09 05:36:34 +00:00
Vadim Zeitlin
7da8bfe30d
add VC9 project files ( closes #9960 )
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56164 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-08 16:42:00 +00:00
Vadim Zeitlin
313b12ad22
update to 0.2.4 version
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56163 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-08 16:32:41 +00:00
Vadim Zeitlin
8ece421c6c
rebaked makefiles with 0.2.4
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56158 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-08 15:44:49 +00:00
Francesco Montorsi
417f513723
add wx_xrc.bkl bakefile wxpreset to the list of files to install; set Id in the svn:keyword for that file
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56152 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-07 17:51:13 +00:00
Michael Wetherell
a04e2a27bf
Add builds for the stable branch, and make the release builds quick builds.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-06 23:25:51 +00:00
Michael Wetherell
8dabb0bd60
Limit to one build at a time with a lock, share checkout dirs, do full builds
...
out of tree and use ccache.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56134 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-06 20:48:32 +00:00
Michael Wetherell
ff001ada4c
Update from Laurent.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56038 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-10-02 23:47:06 +00:00
Michael Wetherell
9932114546
Update from Brian.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55983 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-09-30 16:12:36 +00:00
Michael Wetherell
1e7c7fce7b
Apply Brian's own changes.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-09-29 19:21:39 +00:00
Michael Wetherell
65eb489461
Make the names consistent between the two builds.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55960 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-09-29 19:13:50 +00:00
Michael Wetherell
f2f7263c3f
Enable vc++ 9 quick builds.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55959 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-09-29 18:47:55 +00:00
Michael Wetherell
4480f17a78
Add a couple of missing close slashes.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55958 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-09-29 17:57:24 +00:00
Michael Wetherell
d8fe008b35
Rename to ravnsgaard.xml.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55957 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-09-29 17:41:08 +00:00
Michael Wetherell
c0609afdcb
Switch to release builds.
...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55952 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2008-09-29 16:36:31 +00:00