~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/include/wxFlatNotebook/include/wx/wxFlatNotebook/fnb_customize_dlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef __fnb_customize_dlg__
2
 
#define __fnb_customize_dlg__
3
 
 
4
 
#include <wx/statline.h>
5
 
#include <wx/button.h>
6
 
#include "wx/dialog.h"
7
 
#include "wx/panel.h"
8
 
 
9
 
class wxCheckBox;
10
 
class wxRadioBox;
11
 
 
12
 
///////////////////////////////////////////////////////////////////////////////
13
 
/// Class wxFNBCustomizeDialog
14
 
///////////////////////////////////////////////////////////////////////////////
15
 
class wxFNBCustomizeDialog : public wxDialog 
16
 
{
17
 
protected:
18
 
        wxStaticLine* m_staticline2;
19
 
        wxButton* m_close;
20
 
        long m_options;
21
 
 
22
 
        // Option's page members
23
 
        wxRadioBox* m_styles;
24
 
        wxRadioBox* m_tabVPosition;
25
 
        wxRadioBox* m_navigationStyle;
26
 
        wxCheckBox* m_tabBorder;
27
 
        wxCheckBox* m_hideCloseButton;
28
 
        wxCheckBox* m_mouseMiddleCloseTab;
29
 
        wxCheckBox* m_xButtonOnTab;
30
 
        wxCheckBox* m_dlbClickCloseTab;
31
 
        wxCheckBox* m_smartTabbing;
32
 
        wxCheckBox* m_allowDragAndDrop;
33
 
        wxCheckBox* m_foreignDnD;
34
 
        wxCheckBox* m_gradient;
35
 
        wxCheckBox* m_colorfulTab;
36
 
 
37
 
public:
38
 
        wxFNBCustomizeDialog( wxWindow* parent, long options, int id = wxID_ANY, wxString title = wxT("Customize"), wxPoint pos = wxDefaultPosition, wxSize size = wxDefaultSize, int style = wxDEFAULT_DIALOG_STYLE );
39
 
 
40
 
protected:
41
 
        void OnClose(wxCommandEvent &event);
42
 
        void OnStyle(wxCommandEvent &event);
43
 
 
44
 
private:
45
 
        wxPanel *CreateOptionsPage();
46
 
        void ConnectEvents();
47
 
};
48
 
 
49
 
#endif //__fnb_customize_dlg__
50