Update of /cvsroot/sharedaemon/ui-wx/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30716 Modified Files: AboutDlg.cpp AboutDlg.h DownloadListCtrl.cpp DownloadListCtrl.h GUISettingsDlg.cpp GUISettingsDlg.h Images.cpp Images.h KnownListCtrl.cpp KnownListCtrl.h MBitmapButton.cpp MBitmapButton.h MListCtrl.cpp MListCtrl.h MMultiButton.cpp MMultiButton.h MainDlg.cpp MainDlg.h MessagesWnd.h QueueListCtrl.cpp QueueListCtrl.h SBPanel.cpp SBPanel.h SearchListCtrl.cpp SearchListCtrl.h SearchWnd.h ServerListCtrl.h ServerWnd.cpp ServerWnd.h SharedFilesListCtrl.cpp SharedFilesListCtrl.h SharedFilesWnd.h StatisticsTreeCtrl.h StatisticsWnd.cpp StatisticsWnd.h SysTray.h TransferWnd.cpp TransferWnd.h UploadListCtrl.cpp UploadListCtrl.h wxInterface.cpp wxInterface.h wxInterface.wdr wxInterface_wdr.cpp wxInterface_wdr.h Log Message: Cleaned up headers mess - now only neccesery headers are being included. Index: AboutDlg.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/AboutDlg.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- AboutDlg.cpp 14 Jan 2004 13:02:24 -0000 1.1 +++ AboutDlg.cpp 22 Feb 2004 23:54:37 -0000 1.2 @@ -1,749 +1,753 @@ -/* - * This file is part of wxInterface. - * Copyright (C) 2003 Alo Sarv <ma...@us...> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of [...1471 lines suppressed...] + ); + t_title->SetFont(wxFont(12, wxSWISS, wxNORMAL, wxBOLD)); + t_title->SetSize(t_title->GetBestSize()); + s_top->Add(t_title, 0, wxLEFT|wxRIGHT|wxTOP, 5); + + wxStaticText *t_desc = new wxStaticText( + this, -1, + wxT("Written by Madcat <ma...@us...>\n" + "Contributions and translations by various other people :)") + ); + s_main->Add(t_desc); + + wxButton *b_close = new wxButton(this, wxID_OK, wxT("Close")); + s_main->Add(b_close, 0, wxALIGN_RIGHT|wxALL, 5); + + SetAutoLayout(true); + SetSizer(s_main); + s_main->Fit(this); + s_main->SetSizeHints(this); +} Index: AboutDlg.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/AboutDlg.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- AboutDlg.h 14 Jan 2004 13:02:24 -0000 1.1 +++ AboutDlg.h 22 Feb 2004 23:54:37 -0000 1.2 @@ -1,48 +1,48 @@ -/* - * This file is part of wxInterface. - * Copyright (C) 2003 Alo Sarv <ma...@us...> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#ifndef __ABOUTDLG_H__ -#define __ABOUTDLG_H__ - -#ifdef __GNUG__ - #pragma interface "AboutDlg.cpp" -#endif - -#ifndef WX_PRECOMP - #include "wx/wx.h" - #include "wx/image.h" -#endif - -#include "defines.h" - -/************************** CAboutDlg class ***********************************/ -/* The About... box of the interface - displays my logo and stuff. */ -/******************************************************************************/ -class CAboutDlg : public wxDialog { -public: - CAboutDlg( /* Constructor */ - wxWindow *parent, wxWindowID id, const wxString &title, - const wxPoint &pos = wxDefaultPosition, - const wxSize &size = wxDefaultSize, long style = - wxDEFAULT_DIALOG_STYLE, const wxString &name = wxEmptyString - ); - void CreateControls(); /* Creates controls */ -}; - -#endif +/* + * This file is part of wxInterface. + * Copyright (C) 2003 Alo Sarv <ma...@us...> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef __ABOUTDLG_H__ +#define __ABOUTDLG_H__ + +#ifdef __GNUG__ + #pragma interface "AboutDlg.cpp" +#endif + +#ifndef WX_PRECOMP + #include <wx/dialog.h> + #include <wx/image.h> +#endif + +#include "defines.h" + +/************************** CAboutDlg class ***********************************/ +/* The About... box of the interface - displays my logo and stuff. */ +/******************************************************************************/ +class CAboutDlg : public wxDialog { +public: + CAboutDlg( /* Constructor */ + wxWindow *parent, wxWindowID id, const wxString &title, + const wxPoint &pos = wxDefaultPosition, + const wxSize &size = wxDefaultSize, long style = + wxDEFAULT_DIALOG_STYLE, const wxString &name = wxEmptyString + ); + void CreateControls(); /* Creates controls */ +}; + +#endif Index: DownloadListCtrl.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/DownloadListCtrl.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- DownloadListCtrl.cpp 20 Nov 2003 01:27:26 -0000 1.8 +++ DownloadListCtrl.cpp 22 Feb 2004 23:54:37 -0000 1.9 @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - + #ifdef __GNUG__ #pragma implementation "DownloadListCtrl.cpp" #endif @@ -29,6 +29,7 @@ #endif #include "DownloadListCtrl.h" +#include <wx/intl.h> BEGIN_EVENT_TABLE(CDownloadListCtrl, CMListCtrl) END_EVENT_TABLE() @@ -49,9 +50,9 @@ * if not present, -1 is used. */ wxString col_headers[] = { - _("File Name"), _("Size"), _("Transferred"), _("Completed"), - _("Speed"), _("Progress"), _("Sources"), _("Priority"), - _("Status"), _("Remaining"), _("Last Seen Complete"), + _("File Name"), _("Size"), _("Transferred"), _("Completed"), + _("Speed"), _("Progress"), _("Sources"), _("Priority"), + _("Status"), _("Remaining"), _("Last Seen Complete"), _("Last Reception"), _("Category") }; int widths[13]; Index: DownloadListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/DownloadListCtrl.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- DownloadListCtrl.h 24 Nov 2003 16:06:31 -0000 1.7 +++ DownloadListCtrl.h 22 Feb 2004 23:54:37 -0000 1.8 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: GUISettingsDlg.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/GUISettingsDlg.cpp,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- GUISettingsDlg.cpp 13 Jan 2004 23:10:26 -0000 1.37 +++ GUISettingsDlg.cpp 22 Feb 2004 23:54:37 -0000 1.38 @@ -31,6 +31,10 @@ #include "GUISettingsDlg.h" #include "MainDlg.h" +#include <wx/textctrl.h> +#include <wx/msgdlg.h> +#include <wx/statbox.h> + /********************* * CGUISettingsDlg class *********************/ @@ -81,7 +85,7 @@ int font, iconset, tool_align, numlang, numiconsets; bool show_splash, prompt_exit, show_toolbar, show_menubar, remember_last; - wxString tmpname, startpage; + wxString tmpname, startpage; short i; /* Read from config. If no value found, &<field> remains unchanged */ Index: GUISettingsDlg.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/GUISettingsDlg.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- GUISettingsDlg.h 24 Nov 2003 16:06:31 -0000 1.12 +++ GUISettingsDlg.h 22 Feb 2004 23:54:37 -0000 1.13 @@ -25,7 +25,9 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" + #include <wx/dialog.h> + #include <wx/choice.h> + #include <wx/checkbox.h> #endif #include "wxInterface_wdr.h" Index: Images.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/Images.cpp,v retrieving revision 1.57 retrieving revision 1.58 diff -u -d -r1.57 -r1.58 --- Images.cpp 14 Jan 2004 10:21:22 -0000 1.57 +++ Images.cpp 22 Feb 2004 23:54:37 -0000 1.58 @@ -30,6 +30,12 @@ #include "Images.h" +#include <wx/statbmp.h> +#include <wx/dcmemory.h> +#include <wx/settings.h> +#include <wx/app.h> +#include <wx/log.h> + /* List to store all bitmaps in */ #include <wx/listimpl.cpp> WX_DEFINE_LIST(ListOfBitmaps); Index: Images.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/Images.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- Images.h 29 Dec 2003 04:34:33 -0000 1.22 +++ Images.h 22 Feb 2004 23:54:37 -0000 1.23 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "defines.h" Index: KnownListCtrl.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/KnownListCtrl.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- KnownListCtrl.cpp 20 Nov 2003 01:27:26 -0000 1.8 +++ KnownListCtrl.cpp 22 Feb 2004 23:54:37 -0000 1.9 @@ -30,6 +30,8 @@ #include "KnownListCtrl.h" +#include <wx/intl.h> + BEGIN_EVENT_TABLE(CKnownListCtrl, CMListCtrl) END_EVENT_TABLE() Index: KnownListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/KnownListCtrl.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- KnownListCtrl.h 24 Nov 2003 16:06:31 -0000 1.7 +++ KnownListCtrl.h 22 Feb 2004 23:54:37 -0000 1.8 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: MBitmapButton.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MBitmapButton.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- MBitmapButton.cpp 31 Dec 2003 10:24:26 -0000 1.13 +++ MBitmapButton.cpp 22 Feb 2004 23:54:37 -0000 1.14 @@ -30,6 +30,9 @@ #include "MBitmapButton.h" +#include <wx/dcmemory.h> +#include <wx/settings.h> + /** * wxMac and wxMSW buttons can have children, use wxButton as base and put * a static bitmap in there. Index: MBitmapButton.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MBitmapButton.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- MBitmapButton.h 30 Dec 2003 13:33:36 -0000 1.9 +++ MBitmapButton.h 22 Feb 2004 23:54:37 -0000 1.10 @@ -25,7 +25,8 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" + #include <wx/button.h> + #include <wx/bmpbuttn.h> #endif #include "Images.h" Index: MListCtrl.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MListCtrl.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- MListCtrl.cpp 13 Jan 2004 01:06:07 -0000 1.8 +++ MListCtrl.cpp 22 Feb 2004 23:54:37 -0000 1.9 @@ -30,6 +30,7 @@ #include "MListCtrl.h" +#include <wx/menu.h> BEGIN_EVENT_TABLE(CMListCtrl,wxListCtrl) EVT_LIST_COL_RIGHT_CLICK(-1, CMListCtrl::ColumnRightClick) Index: MListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MListCtrl.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- MListCtrl.h 20 Nov 2003 01:27:26 -0000 1.4 +++ MListCtrl.h 22 Feb 2004 23:54:37 -0000 1.5 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: MMultiButton.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MMultiButton.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- MMultiButton.cpp 27 Dec 2003 07:18:20 -0000 1.5 +++ MMultiButton.cpp 22 Feb 2004 23:54:37 -0000 1.6 @@ -30,6 +30,8 @@ #include "MMultiButton.h" +#include <wx/sizer.h> + BEGIN_EVENT_TABLE(MMultiButton, wxControl) EVT_PAINT(MMultiButton::OnPaint) END_EVENT_TABLE() Index: MMultiButton.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MMultiButton.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- MMultiButton.h 27 Dec 2003 07:18:20 -0000 1.2 +++ MMultiButton.h 22 Feb 2004 23:54:37 -0000 1.3 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "MBitmapButton.h" Index: MainDlg.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MainDlg.cpp,v retrieving revision 1.63 retrieving revision 1.64 diff -u -d -r1.63 -r1.64 --- MainDlg.cpp 15 Feb 2004 16:54:34 -0000 1.63 +++ MainDlg.cpp 22 Feb 2004 23:54:37 -0000 1.64 @@ -30,6 +30,9 @@ #include "MainDlg.h" +#include <wx/log.h> +#include <wx/msgdlg.h> + /* Forward delcaration of globally available classes */ class CServerWnd *serverwnd; class CTransferWnd *transferwnd; Index: MainDlg.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MainDlg.h,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- MainDlg.h 14 Jan 2004 13:26:44 -0000 1.21 +++ MainDlg.h 22 Feb 2004 23:54:37 -0000 1.22 @@ -26,7 +26,8 @@ // Include wxWindows' headers #ifndef WX_PRECOMP - #include <wx/wx.h> + #include <wx/toolbar.h> + #include <wx/menu.h> #endif /* Include local headers */ Index: MessagesWnd.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/MessagesWnd.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- MessagesWnd.h 24 Nov 2003 16:06:32 -0000 1.8 +++ MessagesWnd.h 22 Feb 2004 23:54:37 -0000 1.9 @@ -25,7 +25,7 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" + #include <wx/statbmp.h> #endif #include "wxInterface_wdr.h" Index: QueueListCtrl.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/QueueListCtrl.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- QueueListCtrl.cpp 20 Nov 2003 01:27:26 -0000 1.8 +++ QueueListCtrl.cpp 22 Feb 2004 23:54:37 -0000 1.9 @@ -30,6 +30,8 @@ #include "QueueListCtrl.h" +#include <wx/intl.h> + BEGIN_EVENT_TABLE(CQueueListCtrl, CMListCtrl) END_EVENT_TABLE() Index: QueueListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/QueueListCtrl.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- QueueListCtrl.h 24 Nov 2003 16:06:32 -0000 1.7 +++ QueueListCtrl.h 22 Feb 2004 23:54:37 -0000 1.8 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: SBPanel.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SBPanel.cpp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- SBPanel.cpp 13 Jan 2004 23:10:26 -0000 1.20 +++ SBPanel.cpp 22 Feb 2004 23:54:37 -0000 1.21 @@ -30,6 +30,8 @@ #include "SBPanel.h" +#include <wx/statbox.h> + BEGIN_EVENT_TABLE(CSBPanel, wxPanel) EVT_BUTTON(-1, CSBPanel::Toggle) END_EVENT_TABLE() Index: SBPanel.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SBPanel.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- SBPanel.h 29 Dec 2003 04:34:33 -0000 1.8 +++ SBPanel.h 22 Feb 2004 23:54:37 -0000 1.9 @@ -27,7 +27,8 @@ #include "wx/wxprec.h" #ifndef WX_PRECOMP - #include "wx/wx.h" + #include <wx/sizer.h> + #include <wx/panel.h> #endif #include "defines.h" Index: SearchListCtrl.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SearchListCtrl.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- SearchListCtrl.cpp 13 Jan 2004 23:10:26 -0000 1.9 +++ SearchListCtrl.cpp 22 Feb 2004 23:54:37 -0000 1.10 @@ -30,6 +30,8 @@ #include "SearchListCtrl.h" +#include <wx/intl.h> + BEGIN_EVENT_TABLE(CSearchListCtrl, CMListCtrl) EVT_SIZE(CSearchListCtrl::OnSize) END_EVENT_TABLE() Index: SearchListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SearchListCtrl.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- SearchListCtrl.h 13 Jan 2004 23:10:26 -0000 1.7 +++ SearchListCtrl.h 22 Feb 2004 23:54:37 -0000 1.8 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: SearchWnd.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SearchWnd.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- SearchWnd.h 13 Jan 2004 23:10:26 -0000 1.10 +++ SearchWnd.h 22 Feb 2004 23:54:37 -0000 1.11 @@ -25,7 +25,11 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" + #include <wx/radiobut.h> + #include <wx/sizer.h> + #include <wx/checkbox.h> + #include <wx/button.h> + #include <wx/textctrl.h> #endif /* Private headers */ Index: ServerListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/ServerListCtrl.h,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- ServerListCtrl.h 10 Jan 2004 18:59:00 -0000 1.10 +++ ServerListCtrl.h 22 Feb 2004 23:54:37 -0000 1.11 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #include "wx/imaglist.h" #endif Index: ServerWnd.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/ServerWnd.cpp,v retrieving revision 1.58 retrieving revision 1.59 diff -u -d -r1.58 -r1.59 --- ServerWnd.cpp 13 Jan 2004 23:10:26 -0000 1.58 +++ ServerWnd.cpp 22 Feb 2004 23:54:37 -0000 1.59 @@ -32,6 +32,8 @@ #include "ServerListCtrl.h" class CServerListCtrl *serverlistctrl; +#include <wx/log.h> + /* * CServerWnd class. */ Index: ServerWnd.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/ServerWnd.h,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- ServerWnd.h 29 Dec 2003 09:52:38 -0000 1.34 +++ ServerWnd.h 22 Feb 2004 23:54:37 -0000 1.35 @@ -25,7 +25,9 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" + #include <wx/statbmp.h> + #include <wx/stattext.h> + #include <wx/checkbox.h> #endif /* wxWindows headers */ Index: SharedFilesListCtrl.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SharedFilesListCtrl.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- SharedFilesListCtrl.cpp 20 Nov 2003 01:27:26 -0000 1.8 +++ SharedFilesListCtrl.cpp 22 Feb 2004 23:54:37 -0000 1.9 @@ -30,6 +30,8 @@ #include "SharedFilesListCtrl.h" +#include <wx/intl.h> + BEGIN_EVENT_TABLE(CSharedFilesListCtrl, CMListCtrl) END_EVENT_TABLE() Index: SharedFilesListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SharedFilesListCtrl.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- SharedFilesListCtrl.h 24 Nov 2003 16:06:32 -0000 1.7 +++ SharedFilesListCtrl.h 22 Feb 2004 23:54:37 -0000 1.8 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: SharedFilesWnd.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SharedFilesWnd.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- SharedFilesWnd.h 24 Nov 2003 16:06:32 -0000 1.9 +++ SharedFilesWnd.h 22 Feb 2004 23:54:37 -0000 1.10 @@ -25,7 +25,9 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" + #include <wx/gauge.h> + #include <wx/stattext.h> + #include <wx/statbmp.h> #endif #include "wxInterface_wdr.h" Index: StatisticsTreeCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/StatisticsTreeCtrl.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- StatisticsTreeCtrl.h 10 Jan 2004 18:59:00 -0000 1.9 +++ StatisticsTreeCtrl.h 22 Feb 2004 23:54:37 -0000 1.10 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #include "wx/imaglist.h" #endif Index: StatisticsWnd.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/StatisticsWnd.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- StatisticsWnd.cpp 20 Nov 2003 01:27:26 -0000 1.8 +++ StatisticsWnd.cpp 22 Feb 2004 23:54:37 -0000 1.9 @@ -30,6 +30,8 @@ #include "StatisticsWnd.h" +#include <wx/menu.h> + BEGIN_EVENT_TABLE(CStatisticsWnd,wxPanel) EVT_BUTTON(BTN_STAT, CStatisticsWnd::StatisticsMenu) END_EVENT_TABLE() Index: StatisticsWnd.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/StatisticsWnd.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- StatisticsWnd.h 30 Nov 2003 23:07:27 -0000 1.9 +++ StatisticsWnd.h 22 Feb 2004 23:54:37 -0000 1.10 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: SysTray.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/SysTray.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- SysTray.h 30 Dec 2003 05:43:52 -0000 1.8 +++ SysTray.h 22 Feb 2004 23:54:37 -0000 1.9 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "defines.h" Index: TransferWnd.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/TransferWnd.cpp,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- TransferWnd.cpp 27 Nov 2003 08:23:12 -0000 1.27 +++ TransferWnd.cpp 22 Feb 2004 23:54:37 -0000 1.28 @@ -30,6 +30,11 @@ #include "TransferWnd.h" +#include <wx/sizer.h> +#include <wx/statbmp.h> +#include <wx/stattext.h> +#include <wx/intl.h> + BEGIN_EVENT_TABLE(CTransferWnd,wxPanel) /* Button events for changing the content of splitter frame content */ EVT_BUTTON(ID_UPLOAD, CTransferWnd::ChangeToQueue) Index: TransferWnd.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/TransferWnd.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- TransferWnd.h 24 Nov 2003 16:06:32 -0000 1.12 +++ TransferWnd.h 22 Feb 2004 23:54:37 -0000 1.13 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif /* Global includes for resources */ Index: UploadListCtrl.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/UploadListCtrl.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- UploadListCtrl.cpp 20 Nov 2003 01:27:26 -0000 1.8 +++ UploadListCtrl.cpp 22 Feb 2004 23:54:37 -0000 1.9 @@ -30,6 +30,8 @@ #include "UploadListCtrl.h" +#include <wx/intl.h> + BEGIN_EVENT_TABLE(CUploadListCtrl, CMListCtrl) END_EVENT_TABLE() Index: UploadListCtrl.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/UploadListCtrl.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- UploadListCtrl.h 24 Nov 2003 16:06:32 -0000 1.7 +++ UploadListCtrl.h 22 Feb 2004 23:54:37 -0000 1.8 @@ -25,7 +25,6 @@ #endif #ifndef WX_PRECOMP - #include "wx/wx.h" #endif #include "wxInterface_wdr.h" Index: wxInterface.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/wxInterface.cpp,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- wxInterface.cpp 10 Jan 2004 18:59:00 -0000 1.17 +++ wxInterface.cpp 22 Feb 2004 23:54:37 -0000 1.18 @@ -31,6 +31,8 @@ #include "wxInterface.h" #include "MainDlg.h" +#include <wx/log.h> + /* * Base class for wxInterface. Everything else starts from here. */ Index: wxInterface.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/wxInterface.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- wxInterface.h 18 Dec 2003 04:25:36 -0000 1.4 +++ wxInterface.h 22 Feb 2004 23:54:37 -0000 1.5 @@ -26,7 +26,8 @@ // Include wxWindows' headers #ifndef WX_PRECOMP - #include <wx/wx.h> + #include <wx/app.h> + #include <wx/intl.h> #endif // Include private headers Index: wxInterface.wdr =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/wxInterface.wdr,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 Binary files /tmp/cvsZEQ2TA and /tmp/cvsZRaz08 differ Index: wxInterface_wdr.cpp =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/wxInterface_wdr.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- wxInterface_wdr.cpp 13 Jan 2004 23:10:26 -0000 1.11 +++ wxInterface_wdr.cpp 22 Feb 2004 23:54:37 -0000 1.12 @@ -44,6 +44,9 @@ #include "StatisticsTreeCtrl.h" #include "ColorFrameCtrl.h" +#include <wx/sizer.h> +#include <wx/statbox.h> + // Implement window functions Index: wxInterface_wdr.h =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/src/wxInterface_wdr.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- wxInterface_wdr.h 13 Jan 2004 23:10:26 -0000 1.6 +++ wxInterface_wdr.h 22 Feb 2004 23:54:38 -0000 1.7 @@ -13,7 +13,7 @@ // Include wxWindows' headers #ifndef WX_PRECOMP - #include <wx/wx.h> +// #include <wx/wx.h> #endif #include <wx/image.h> |