////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // // Copyright : (C) 2015 Eran Ifrah // File name : listctrlpanelbase.h // // ------------------------------------------------------------------------- // A // _____ _ _ _ _ // / __ \ | | | | (_) | // | / \/ ___ __| | ___| | _| |_ ___ // | | / _ \ / _ |/ _ \ | | | __/ _ ) // | \__/\ (_) | (_| | __/ |___| | || __/ // \____/\___/ \__,_|\___\_____/_|\__\___| // // F i l e // // 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 file was auto-generated by codelite's wxCrafter Plugin // wxCrafter project file: listctrlpanel.wxcp // Do not modify this file by hand! ////////////////////////////////////////////////////////////////////// #ifndef CODELITE_FORMBUILDER_LISTCTRLPANEL_BASE_CLASSES_H #define CODELITE_FORMBUILDER_LISTCTRLPANEL_BASE_CLASSES_H #include #include #include #include #include #include #include #include #include #include #include #if wxVERSION_NUMBER >= 2900 #include #include #include #include #endif class ListCtrlPanelBase : public wxPanel { protected: wxDataViewListCtrl* m_dvListCtrl; protected: virtual void OnItemActivated(wxDataViewEvent& event) { event.Skip(); } virtual void OnMenu(wxDataViewEvent& event) { event.Skip(); } public: wxDataViewListCtrl* GetDvListCtrl() { return m_dvListCtrl; } ListCtrlPanelBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(500,300), long style = wxTAB_TRAVERSAL); virtual ~ListCtrlPanelBase(); }; class DebuggerBtImgList : public wxImageList { protected: // Maintain a map of all bitmaps representd by their name std::map m_bitmaps; protected: public: DebuggerBtImgList(); const wxBitmap& Bitmap(const wxString &name) const { if ( !m_bitmaps.count(name) ) return wxNullBitmap; return m_bitmaps.find(name)->second; } virtual ~DebuggerBtImgList(); }; #endif