亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? notebook.h

?? wxWidgets 2.8.9 Downloads
?? H
字號:
/////////////////////////////////////////////////////////////////////////////// Name:        wx/msw/notebook.h// Purpose:     MSW/GTK compatible notebook (a.k.a. property sheet)// Author:      Robert Roebling// Modified by: Vadim Zeitlin for Windows version// RCS-ID:      $Id: notebook.h 41797 2006-10-09 12:10:01Z VZ $// Copyright:   (c) Julian Smart// Licence:     wxWindows licence/////////////////////////////////////////////////////////////////////////////#ifndef _NOTEBOOK_H#define _NOTEBOOK_H#if wxUSE_NOTEBOOK// ----------------------------------------------------------------------------// headers// ----------------------------------------------------------------------------#include "wx/control.h"// ----------------------------------------------------------------------------// wxNotebook// ----------------------------------------------------------------------------class WXDLLEXPORT wxNotebookPageInfo : public wxObject{public :    wxNotebookPageInfo() { m_page = NULL; m_imageId = -1; m_selected = false; }    virtual ~wxNotebookPageInfo() { }    void Create(wxNotebookPage *page,                const wxString& text,                bool selected,                int imageId)    {        m_page = page;        m_text = text;        m_selected = selected;        m_imageId = imageId;    }    wxNotebookPage* GetPage() const { return m_page; }    wxString GetText() const { return m_text; }    bool GetSelected() const { return m_selected; }    int GetImageId() const { return m_imageId; }private:    wxNotebookPage *m_page;    wxString m_text;    bool m_selected;    int m_imageId;    DECLARE_DYNAMIC_CLASS(wxNotebookPageInfo)};WX_DECLARE_EXPORTED_LIST(wxNotebookPageInfo, wxNotebookPageInfoList );class WXDLLEXPORT wxNotebook : public wxNotebookBase{public:  // ctors  // -----    // default for dynamic class  wxNotebook();    // the same arguments as for wxControl (@@@ any special styles?)  wxNotebook(wxWindow *parent,             wxWindowID id,             const wxPoint& pos = wxDefaultPosition,             const wxSize& size = wxDefaultSize,             long style = 0,             const wxString& name = wxNotebookNameStr);    // Create() function  bool Create(wxWindow *parent,              wxWindowID id,              const wxPoint& pos = wxDefaultPosition,              const wxSize& size = wxDefaultSize,              long style = 0,              const wxString& name = wxNotebookNameStr);  virtual ~wxNotebook();  // accessors  // ---------    // get number of pages in the dialog  virtual size_t GetPageCount() const;    // set the currently selected page, return the index of the previously    // selected one (or -1 on error)    // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events  int SetSelection(size_t nPage);    // get the currently selected page  int GetSelection() const { return m_nSelection; }    // changes selected page without sending events  int ChangeSelection(size_t nPage);    // set/get the title of a page  bool SetPageText(size_t nPage, const wxString& strText);  wxString GetPageText(size_t nPage) const;  // image list stuff: each page may have an image associated with it. All  // the images belong to an image list, so you have to  // 1) create an image list  // 2) associate it with the notebook  // 3) set for each page it's image    // associate image list with a control  void SetImageList(wxImageList* imageList);    // sets/returns item's image index in the current image list  int  GetPageImage(size_t nPage) const;  bool SetPageImage(size_t nPage, int nImage);    // currently it's always 1 because wxGTK doesn't support multi-row    // tab controls  int GetRowCount() const;  // control the appearance of the notebook pages    // set the size (the same for all pages)  void SetPageSize(const wxSize& size);    // set the padding between tabs (in pixels)  void SetPadding(const wxSize& padding);  // operations  // ----------    // remove all pages  bool DeleteAllPages();    // inserts a new page to the notebook (it will be deleted ny the notebook,    // don't delete it yourself). If bSelect, this page becomes active.  bool InsertPage(size_t nPage,                  wxNotebookPage *pPage,                  const wxString& strText,                  bool bSelect = false,                  int imageId = -1);  void AddPageInfo( wxNotebookPageInfo* info ) { AddPage( info->GetPage() , info->GetText() , info->GetSelected() , info->GetImageId() ); }  const wxNotebookPageInfoList& GetPageInfos() const;    // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH    // style.  void SetTabSize(const wxSize& sz);    // hit test  virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;    // calculate the size of the notebook from the size of its page  virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;  // callbacks  // ---------  void OnSize(wxSizeEvent& event);  void OnSelChange(wxNotebookEvent& event);  void OnNavigationKey(wxNavigationKeyEvent& event);  // base class virtuals  // -------------------  virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);  virtual bool MSWOnScroll(int orientation, WXWORD nSBCode,                           WXWORD pos, WXHWND control);#if wxUSE_CONSTRAINTS  virtual void SetConstraintSizes(bool recurse = true);  virtual bool DoPhase(int nPhase);#endif // wxUSE_CONSTRAINTS  // Attempts to get colour for UX theme page background  wxColour GetThemeBackgroundColour() const;  // implementation only  // -------------------#if wxUSE_UXTHEME  virtual bool SetBackgroundColour(const wxColour& colour)  {      if ( !wxNotebookBase::SetBackgroundColour(colour) )          return false;      UpdateBgBrush();      return true;  }  // return the themed brush for painting our children  virtual WXHBRUSH MSWGetBgBrushForChild(WXHDC hDC, WXHWND hWnd);  // draw child background  virtual bool MSWPrintChild(WXHDC hDC, wxWindow *win);#endif // wxUSE_UXTHEME  // translate wxWin styles to the Windows ones  virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle = NULL) const;protected:  // common part of all ctors  void Init();  // hides the currently shown page and shows the given one (if not -1) and  // updates m_nSelection accordingly  void UpdateSelection(int selNew);  // remove one page from the notebook, without deleting  virtual wxNotebookPage *DoRemovePage(size_t nPage);  // get the page rectangle for the current notebook size  //  // returns empty rectangle if an error occurs, do test for it  wxRect GetPageSize() const;  // set the size of the given page to fit in the notebook  void AdjustPageSize(wxNotebookPage *page);#if wxUSE_UXTHEME  // gets the bitmap of notebook background and returns a brush from it  WXHBRUSH QueryBgBitmap();  // creates the brush to be used for drawing the tab control background  void UpdateBgBrush();  // common part of QueryBgBitmap() and MSWPrintChild()  //  // if child == NULL, draw background for the entire notebook itself  bool DoDrawBackground(WXHDC hDC, wxWindow *child = NULL);#endif // wxUSE_UXTHEME  // these function are only used for reducing flicker on notebook resize and  // we don't need to do this for WinCE#ifndef __WXWINCE__  void OnEraseBackground(wxEraseEvent& event);  void OnPaint(wxPaintEvent& event);  // true if we have already subclassed our updown control  bool m_hasSubclassedUpdown;#endif // __WXWINCE__  // the current selection (-1 if none)  int m_nSelection;  wxNotebookPageInfoList m_pageInfos;#if wxUSE_UXTHEME  // background brush used to paint the tab control  WXHBRUSH m_hbrBackground;#endif // wxUSE_UXTHEME  DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook)  DECLARE_EVENT_TABLE()};#endif // wxUSE_NOTEBOOK#endif // _NOTEBOOK_H

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久精k8| 日韩免费看网站| 亚洲欧洲三级电影| 99久久久久免费精品国产| 欧美激情一区在线观看| 岛国一区二区三区| 亚洲色图欧洲色图| 欧美三级日韩在线| 日韩高清不卡在线| xnxx国产精品| av在线播放成人| 亚洲成a人v欧美综合天堂下载 | 欧美精品三级在线观看| 婷婷开心激情综合| 欧美成人一区二区三区| 国产成人av电影在线观看| 亚洲另类在线制服丝袜| 在线不卡免费av| 国产精品一区不卡| 亚洲精品日韩一| 欧美一区二区啪啪| 成人av网站在线观看免费| 亚洲成va人在线观看| 国产婷婷一区二区| 欧美影视一区在线| 狠狠色狠狠色综合日日91app| 国产精品的网站| 欧美日韩一卡二卡| 豆国产96在线|亚洲| 亚洲123区在线观看| 国产日韩欧美在线一区| 欧美日韩国产123区| 国产真实乱偷精品视频免| 亚洲最大的成人av| 久久免费看少妇高潮| 欧美日韩在线一区二区| 国产一区二区91| 性做久久久久久久免费看| 中文在线一区二区| 欧美一区二区三区免费大片| 成人av网站在线观看| 老司机精品视频导航| 亚洲一区二区美女| 日本一二三四高清不卡| 日韩美女主播在线视频一区二区三区| www.亚洲精品| 国产成人精品免费网站| 久久99精品国产麻豆婷婷| 亚洲一二三四在线观看| 国产精品理伦片| 精品国产乱码久久久久久闺蜜| 色婷婷精品久久二区二区蜜臂av| 国产一区二区在线影院| 肉丝袜脚交视频一区二区| 亚洲精品免费在线观看| 国产日产欧产精品推荐色| 日韩午夜av电影| 在线成人av网站| 欧美性色黄大片| 色婷婷精品久久二区二区蜜臂av | 日本亚洲欧美天堂免费| 亚洲一二三级电影| 亚洲丝袜自拍清纯另类| 欧美激情在线免费观看| 日本一区二区三区免费乱视频| 欧美一卡2卡3卡4卡| 欧美日韩免费一区二区三区| 91色视频在线| 99久久婷婷国产综合精品电影| 大陆成人av片| 成人激情午夜影院| eeuss鲁一区二区三区| 成人午夜在线视频| 99r国产精品| 成人毛片在线观看| www.亚洲国产| 99riav久久精品riav| 99久久99久久精品免费观看 | 夜夜亚洲天天久久| 一区二区三区精品在线| 亚洲一区中文在线| 亚洲一区在线观看视频| 亚洲国产色一区| 亚洲成a人v欧美综合天堂| 亚洲www啪成人一区二区麻豆| 亚洲成av人片观看| 久久国产福利国产秒拍| 国产一区二区三区免费观看| 丁香桃色午夜亚洲一区二区三区| 国产aⅴ综合色| 91色.com| 欧美性大战久久久久久久蜜臀| 欧美日韩国产高清一区二区 | 久久综合色婷婷| 久久精品免费在线观看| 国产精品久久久久影院老司| 亚洲欧美一区二区不卡| 亚洲高清三级视频| 精品一区二区三区av| 国产69精品久久久久777| 91最新地址在线播放| 在线精品视频小说1| 欧美一区二区三区视频| 久久久久99精品国产片| 亚洲欧美日韩久久| 日韩高清一级片| 盗摄精品av一区二区三区| 欧美在线高清视频| 精品国产一区二区在线观看| 国产视频在线观看一区二区三区| 亚洲欧美日韩久久| 美日韩黄色大片| 91在线观看地址| 欧美精品vⅰdeose4hd| 国产欧美精品一区aⅴ影院| 亚洲激情男女视频| 狠狠色综合日日| 91福利国产精品| 久久久久久久av麻豆果冻| 亚洲免费伊人电影| 精品中文字幕一区二区小辣椒| 91年精品国产| 2023国产一二三区日本精品2022| 国产精品乱人伦| 奇米色一区二区三区四区| 成人国产精品免费观看视频| 在线观看视频91| 国产欧美精品一区二区色综合| 丝袜a∨在线一区二区三区不卡| 国产电影一区二区三区| 欧美日韩在线三级| 自拍偷拍亚洲综合| 黄色精品一二区| 欧美三级蜜桃2在线观看| 日本一区免费视频| 奇米一区二区三区| 欧美三级电影在线看| 国产精品理伦片| 极品少妇一区二区| 91麻豆精品国产自产在线| 亚洲乱码国产乱码精品精可以看| 国产真实精品久久二三区| 在线综合视频播放| 亚洲一区在线视频观看| 成人h动漫精品一区二| 久久蜜臀精品av| 天天射综合影视| 欧美视频在线播放| 亚洲啪啪综合av一区二区三区| 丁香网亚洲国际| 久久免费偷拍视频| 精品一区二区三区视频| 777欧美精品| 亚洲成人第一页| 欧美三级日韩三级国产三级| 亚洲精品视频一区| 91亚洲永久精品| 亚洲人成网站精品片在线观看| 国v精品久久久网| 国产午夜亚洲精品午夜鲁丝片| 国产在线麻豆精品观看| 精品久久久久香蕉网| 麻豆国产精品一区二区三区| 91精品免费观看| 美女视频一区在线观看| 欧美福利视频导航| 婷婷中文字幕一区三区| 在线成人小视频| 蜜芽一区二区三区| 日韩精品专区在线影院重磅| 看电视剧不卡顿的网站| 精品嫩草影院久久| 国产精品一区二区不卡| 亚洲国产精品黑人久久久| 岛国一区二区三区| 亚洲手机成人高清视频| 一本大道综合伊人精品热热| 一区二区三区四区蜜桃| 欧美三级日韩在线| 奇米888四色在线精品| 26uuu久久综合| 国产成人精品亚洲日本在线桃色 | 亚洲另类在线视频| 欧美日韩三级在线| 日本va欧美va瓶| 欧美精品一区二区三区高清aⅴ | 亚洲成人av一区二区三区| 欧美三级乱人伦电影| 另类成人小视频在线| 久久久91精品国产一区二区三区| 成人激情av网| 亚洲国产一区二区视频| 91精品国产全国免费观看| 国产一区二区美女| 成人免费视频在线观看| 欧美午夜精品久久久| 精品一区二区av| 国产精品网站导航| 欧美精品乱码久久久久久 | www.亚洲色图.com|