📄 tree.h
字号:
/////////////////////////////////////////////////////////////////////////////// Name: tree.h// Purpose: Testing tree functionality// Author: Julian Smart// Modified by:// Created: 04/01/98// RCS-ID: $Id: tree.h 35650 2005-09-23 12:56:45Z MR $// Copyright: (c) Julian Smart// Licence: wxWindows licence/////////////////////////////////////////////////////////////////////////////#ifndef _TREE_H_#define _TREE_H_#include "wx/wx.h"#include "wx/gizmos/splittree.h"class TestValueWindow;// Define a new application type, each program should derive a class from wxAppclass MyApp : public wxApp{public: // override base class virtuals // ---------------------------- // this one is called on application startup and is a good place for the app // initialization (doing it here and not in the ctor allows to have an error // return: if OnInit() returns false, the application terminates) virtual bool OnInit();};// Define a new frame type: this is going to be our main frameclass MyFrame : public wxFrame{public: // ctor(s) MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size); // event handlers (these functions should _not_ be virtual) void OnQuit(wxCommandEvent& event); void OnAbout(wxCommandEvent& event);protected: wxRemotelyScrolledTreeCtrl* m_tree; wxThinSplitterWindow* m_splitter; wxSplitterScrolledWindow* m_scrolledWindow; //wxScrolledWindow* m_scrolledWindow; TestValueWindow* m_valueWindow;private: // any class wishing to process wxWidgets events must use this macro DECLARE_EVENT_TABLE()};// ----------------------------------------------------------------------------// constants// ----------------------------------------------------------------------------// IDs for the controls and the menu commandsenum{ // menu items Minimal_Quit = 100, Minimal_About};#define idTREE_CTRL 2000#define idSPLITTER_WINDOW 2001#define idVALUE_WINDOW 2002#define idMAIN_FRAME 2003#define idSCROLLED_WINDOW 2004class TestTree: public wxRemotelyScrolledTreeCtrl{ DECLARE_CLASS(TestTree)public: TestTree(wxWindow* parent, wxWindowID id, const wxPoint& pt = wxDefaultPosition, const wxSize& sz = wxDefaultSize, long style = wxTR_HAS_BUTTONS); ~TestTree(); DECLARE_EVENT_TABLE()protected: wxImageList* m_imageList;};class TestValueWindow: public wxTreeCompanionWindow{public: TestValueWindow(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& sz = wxDefaultSize, long style = 0);//// Overrides//// Events//// Data membersprotected: DECLARE_EVENT_TABLE()};#endif // _TREE_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -