boinc/clientgui/DlgEventLogListCtrl.h

74 lines
2.1 KiB
C
Raw Normal View History

Merge commit '03cc6849c7d32f0028869a581ad03916ceb4d8b5' into charlief/wxwidgets30 # By David Anderson (617) and others # Via Oliver Bock (56) and others * commit '03cc6849c7d32f0028869a581ad03916ceb4d8b5': (1943 commits) remote job submission: add C++ interface to estimate_batch function translation stuff locale: Update compiled localization files Commit from Pootle Demo by user admin.: 1563 of 2856 strings translated (190 fuzzy). Commit from Pootle Demo by user admin.: 2741 of 2859 strings translated (45 fuzzy). Commit from Pootle Demo by user admin.: 1097 of 2859 strings translated (154 fuzzy). locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2831 of 2859 strings translated (1 fuzzy). Commit from Pootle Demo by user admin.: 1097 of 2859 strings translated (154 fuzzy). Commit from Pootle Demo by user admin.: 3158 of 3183 strings translated (2 fuzzy). client: Remove build environment changes that attempted to detect Android, it wasn't needed. client: fix Android OS detection client: only add the pthread libs if not linking for Android android: Bulk import of localization text android: Bulk import of localization text locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2817 of 2859 strings translated (4 fuzzy). Commit from Pootle Demo by user admin.: 2830 of 2859 strings translated (1 fuzzy). locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2741 of 2859 strings translated (95 fuzzy). ... Conflicts: checkin_notes clientgui/AsyncRPC.cpp clientgui/BOINCGUIApp.cpp clientgui/DlgEventLog.cpp clientgui/DlgEventLogListCtrl.cpp clientgui/DlgEventLogListCtrl.h clientgui/MainDocument.cpp clientgui/NoticeListCtrl.cpp clientgui/mac/MacBitmapComboBox.cpp clientgui/mac/SetVersion.cpp clientgui/mac/templates/SystemMenu-Info.plist clientgui/sg_BoincSimpleFrame.cpp mac_build/boinc.xcodeproj/project.pbxproj win_build/example_app_multi_thread.vcproj win_build/gr_boinc_ss.vcproj win_build/sleeper.vcproj win_build/uc2.vcproj win_build/uc2_graphics.vcproj win_build/vboxwrapper.vcproj win_build/wrapper.vcproj
2013-10-22 10:53:45 +00:00
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2008 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
#ifndef _DLGEVENTLOGLISTCTRL_H_
#define _DLGEVENTLOGLISTCTRL_H_
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "DlgEventLogListCtrl.cpp"
#endif
#ifdef __WXMAC__
#define DLG_LISTCTRL_BASE wxGenericListCtrl
#else
#define DLG_LISTCTRL_BASE wxListView
#endif
class CDlgEventLog;
class CDlgEventLogListCtrl : public DLG_LISTCTRL_BASE
{
using DLG_LISTCTRL_BASE::GetBackgroundColour;
Merge commit '03cc6849c7d32f0028869a581ad03916ceb4d8b5' into charlief/wxwidgets30 # By David Anderson (617) and others # Via Oliver Bock (56) and others * commit '03cc6849c7d32f0028869a581ad03916ceb4d8b5': (1943 commits) remote job submission: add C++ interface to estimate_batch function translation stuff locale: Update compiled localization files Commit from Pootle Demo by user admin.: 1563 of 2856 strings translated (190 fuzzy). Commit from Pootle Demo by user admin.: 2741 of 2859 strings translated (45 fuzzy). Commit from Pootle Demo by user admin.: 1097 of 2859 strings translated (154 fuzzy). locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2831 of 2859 strings translated (1 fuzzy). Commit from Pootle Demo by user admin.: 1097 of 2859 strings translated (154 fuzzy). Commit from Pootle Demo by user admin.: 3158 of 3183 strings translated (2 fuzzy). client: Remove build environment changes that attempted to detect Android, it wasn't needed. client: fix Android OS detection client: only add the pthread libs if not linking for Android android: Bulk import of localization text android: Bulk import of localization text locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2817 of 2859 strings translated (4 fuzzy). Commit from Pootle Demo by user admin.: 2830 of 2859 strings translated (1 fuzzy). locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2741 of 2859 strings translated (95 fuzzy). ... Conflicts: checkin_notes clientgui/AsyncRPC.cpp clientgui/BOINCGUIApp.cpp clientgui/DlgEventLog.cpp clientgui/DlgEventLogListCtrl.cpp clientgui/DlgEventLogListCtrl.h clientgui/MainDocument.cpp clientgui/NoticeListCtrl.cpp clientgui/mac/MacBitmapComboBox.cpp clientgui/mac/SetVersion.cpp clientgui/mac/templates/SystemMenu-Info.plist clientgui/sg_BoincSimpleFrame.cpp mac_build/boinc.xcodeproj/project.pbxproj win_build/example_app_multi_thread.vcproj win_build/gr_boinc_ss.vcproj win_build/sleeper.vcproj win_build/uc2.vcproj win_build/uc2_graphics.vcproj win_build/vboxwrapper.vcproj win_build/wrapper.vcproj
2013-10-22 10:53:45 +00:00
DECLARE_DYNAMIC_CLASS(CDlgEventLogListCtrl)
DECLARE_EVENT_TABLE()
public:
CDlgEventLogListCtrl();
CDlgEventLogListCtrl(CDlgEventLog* pView, wxWindowID iListWindowID, int iListWindowFlags);
#ifdef __WXMAC__
~CDlgEventLogListCtrl();
#endif
private:
virtual wxString OnGetItemText(long item, long column) const;
virtual int OnGetItemImage(long item) const;
virtual wxListItemAttr* OnGetItemAttr(long item) const;
virtual wxColour GetBackgroundColour();
void OnMouseUp(wxMouseEvent& event);
void OnShow( wxShowEvent& event );
bool m_bIsSingleSelection;
CDlgEventLog* m_pParentView;
#ifdef __WXMAC__
void SetupMacAccessibilitySupport();
void RemoveMacAccessibilitySupport();
void OnSize( wxSizeEvent &event );
Merge commit '03cc6849c7d32f0028869a581ad03916ceb4d8b5' into charlief/wxwidgets30 # By David Anderson (617) and others # Via Oliver Bock (56) and others * commit '03cc6849c7d32f0028869a581ad03916ceb4d8b5': (1943 commits) remote job submission: add C++ interface to estimate_batch function translation stuff locale: Update compiled localization files Commit from Pootle Demo by user admin.: 1563 of 2856 strings translated (190 fuzzy). Commit from Pootle Demo by user admin.: 2741 of 2859 strings translated (45 fuzzy). Commit from Pootle Demo by user admin.: 1097 of 2859 strings translated (154 fuzzy). locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2831 of 2859 strings translated (1 fuzzy). Commit from Pootle Demo by user admin.: 1097 of 2859 strings translated (154 fuzzy). Commit from Pootle Demo by user admin.: 3158 of 3183 strings translated (2 fuzzy). client: Remove build environment changes that attempted to detect Android, it wasn't needed. client: fix Android OS detection client: only add the pthread libs if not linking for Android android: Bulk import of localization text android: Bulk import of localization text locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2817 of 2859 strings translated (4 fuzzy). Commit from Pootle Demo by user admin.: 2830 of 2859 strings translated (1 fuzzy). locale: Update compiled localization files Commit from Pootle Demo by user admin.: 2741 of 2859 strings translated (95 fuzzy). ... Conflicts: checkin_notes clientgui/AsyncRPC.cpp clientgui/BOINCGUIApp.cpp clientgui/DlgEventLog.cpp clientgui/DlgEventLogListCtrl.cpp clientgui/DlgEventLogListCtrl.h clientgui/MainDocument.cpp clientgui/NoticeListCtrl.cpp clientgui/mac/MacBitmapComboBox.cpp clientgui/mac/SetVersion.cpp clientgui/mac/templates/SystemMenu-Info.plist clientgui/sg_BoincSimpleFrame.cpp mac_build/boinc.xcodeproj/project.pbxproj win_build/example_app_multi_thread.vcproj win_build/gr_boinc_ss.vcproj win_build/sleeper.vcproj win_build/uc2.vcproj win_build/uc2_graphics.vcproj win_build/vboxwrapper.vcproj win_build/wrapper.vcproj
2013-10-22 10:53:45 +00:00
void* m_fauxHeaderView;
void* m_fauxBodyView;
#endif
};
#endif