⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wxcasframe.h

📁 电驴的MAC源代码
💻 H
字号:
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// Name:         wxCasFrame Class////// Purpose:      wxCas main frame////// Author:       ThePolish <thepolish@vipmail.ru>////// Copyright (C) 2004 by ThePolish////// Derived from CAS by Pedro de Oliveira <falso@rdk.homeip.net>////// Pixmats from aMule http://www.amule.org////// 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.,/// 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////#ifndef _WXCASFRAME_H#define _WXCASFRAME_H#ifdef __BORLANDC__ #pragma hdrstop#endif// For all others, include the necessary headers#ifndef WX_PRECOMP #include "wx/wx.h"#endif#include <wx/statline.h>#include <wx/toolbar.h>#include <wx/timer.h>#include <wx/filename.h>#include "onlinesig.h"#ifdef __LINUX__		// System monitoring on Linux#include "linuxmon.h"#endif/// Main wxCas Frameclass WxCasFrame: public wxFrame{private:	wxToolBar *m_toolbar;	wxBitmap m_toolBarBitmaps[ 6 ];	wxBoxSizer *m_frameVBox;	wxBoxSizer *m_mainPanelVBox;	wxPanel *m_mainPanel;	wxStaticLine *m_staticLine;#ifdef __WXMSW__	wxStaticLine *m_BottomStaticLine;#endif	wxStaticBox *m_sigPanelSBox;	wxStaticBoxSizer *m_sigPanelSBoxSizer;	wxStaticBox *m_monPanelSBox;	wxStaticBoxSizer *m_monPanelSBoxSizer;	wxStaticBox *m_hitPanelSBox;	wxStaticBoxSizer *m_hitPanelSBoxSizer;	wxStaticBox *m_absHitPanelSBox;	wxStaticBoxSizer *m_absHitPanelSBoxSizer;	wxStaticText *m_statLine_1;	wxStaticText *m_statLine_2;	wxStaticText *m_statLine_3;	wxStaticText *m_statLine_4;	wxStaticText *m_statLine_5;	wxStaticText *m_statLine_6;	wxStaticText *m_statLine_7;	wxStaticText *m_absHitLine;	wxButton *m_absHitButton;	wxStaticText *m_hitLine;	wxButton *m_hitButton;	wxTimer * m_refresh_timer;	wxTimer * m_ftp_update_timer;	OnLineSig *m_aMuleSig;	unsigned int m_maxLineCount;#ifdef __LINUX__		// System monitoring on Linux	wxStaticText *m_sysLine_1;	wxStaticText *m_sysLine_2;	LinuxMon *m_sysMonitor;#endif	enum	{	    ID_BAR_REFRESH = 1000,	    ID_BAR_SAVE,	    ID_BAR_PRINT,	    ID_BAR_PREFS,	    ID_BAR_ABOUT,	    ID_REFRESH_TIMER,	    ID_FTP_UPDATE_TIMER,	    ID_HIT_BUTTON,	    ID_ABS_HIT_BUTTON	};	// Get maximum of 2 uint	unsigned int GetMaxUInt( const unsigned int a, const unsigned int b )	{		return ( ( a ) > ( b ) ? ( a ) : ( b ) );	}	// Constructing Stat_lines	wxString MakeStatLine_1() const;	wxString MakeStatLine_2() const;	wxString MakeStatLine_3() const;	wxString MakeStatLine_4() const;	wxString MakeStatLine_5() const;	wxString MakeStatLine_6() const;	wxString MakeStatLine_7() const;	// Constructing Hits_lines	wxString MakeHitsLine_1() const;	wxString MakeHitsLine_2() const;#ifdef __LINUX__		// System monitoring on Linux	// Constructing Sys_lines	wxString MakeSysLine_1() const;	wxString MakeSysLine_2() const;#endifprotected:	bool UpdateStatsPanel ();	void UpdateAll ( bool forceFitting = FALSE );	void SaveAbsoluteHits();	void OnBarRefresh ( wxCommandEvent & event );	void OnBarAbout ( wxCommandEvent & event );	void OnBarSave ( wxCommandEvent & event );	void OnBarPrint ( wxCommandEvent & event );	void OnBarPrefs ( wxCommandEvent & event );	void OnRefreshTimer ( wxTimerEvent & event );	void OnFtpUpdateTimer ( wxTimerEvent & event );	void OnHitButton ( wxCommandEvent & event );	void OnAbsHitButton ( wxCommandEvent & event );	DECLARE_EVENT_TABLE ()public:	/// Constructor	WxCasFrame ( const wxString& title );	/// Destructor	~WxCasFrame ();	/// Get Online statistics image	wxImage *GetStatImage () const;	/// Refresh timer period changing	bool ChangeRefreshPeriod( const int newPeriod );	/// Refresh timer period changing	bool ChangeFtpUpdatePeriod( const int newPeriod );	/// Set amulesig.dat file	void SetAmuleSigFile( const wxFileName& file );};#endif /* _WXCASFRAME_H */// File_checked_for_headers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -