~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/plugins/contrib/lib_finder/dirlistdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* This file is part of lib_finder plugin for Code::Blocks Studio
 
3
* Copyright (C) 2006-2007  Bartlomiej Swiecki
 
4
*
 
5
* wxSmith is free software; you can redistribute it and/or modify
 
6
* it under the terms of the GNU General Public License as published by
 
7
* the Free Software Foundation; either version 2 of the License, or
 
8
* (at your option) any later version.
 
9
*
 
10
* wxSmith is distributed in the hope that it will be useful,
 
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
13
* GNU General Public License for more details.
 
14
*
 
15
* You should have received a copy of the GNU General Public License
 
16
* along with wxSmith; if not, write to the Free Software
 
17
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 
18
*
 
19
* $Revision: 4504 $
 
20
* $Id: wxsmithpluginregistrants.cpp 4504 2007-10-02 21:52:30Z byo $
 
21
* $HeadURL: svn+ssh://byo@svn.berlios.de/svnroot/repos/codeblocks/trunk/src/plugins/contrib/wxSmith/plugin/wxsmithpluginregistrants.cpp $
 
22
*/
 
23
 
 
24
#ifndef DIRLISTDLG_H
 
25
#define DIRLISTDLG_H
 
26
 
 
27
#include <wx/arrstr.h>
 
28
 
 
29
// NOTE : once the new wxSmith is up and running these includes should be
 
30
// moved to the cpp, forward declarations is what we need here
 
31
 
 
32
//(*Headers(DirListDlg)
 
33
#include <wx/sizer.h>
 
34
#include <wx/textctrl.h>
 
35
#include <wx/button.h>
 
36
#include <wx/dialog.h>
 
37
//*)
 
38
 
 
39
class wxCommandEvent;
 
40
 
 
41
class DirListDlg: public wxDialog
 
42
{
 
43
        public:
 
44
 
 
45
                DirListDlg(wxWindow* parent,const wxArrayString& Dirs,wxWindowID id = -1);
 
46
                virtual ~DirListDlg();
 
47
 
 
48
                wxArrayString Dirs;
 
49
 
 
50
        private:
 
51
 
 
52
        //(*Declarations(DirListDlg)
 
53
        wxButton* Button4;
 
54
        wxBoxSizer* BoxSizer2;
 
55
        wxButton* Button3;
 
56
        wxTextCtrl* DirList;
 
57
        wxBoxSizer* BoxSizer1;
 
58
        wxFlexGridSizer* FlexGridSizer1;
 
59
        //*)
 
60
 
 
61
                //(*Handlers(DirListDlg)
 
62
                void OnButton1Click(wxCommandEvent& event);
 
63
                void OnButton2Click(wxCommandEvent& event);
 
64
                void OnButton3Click(wxCommandEvent& event);
 
65
                void OnButton4Click(wxCommandEvent& event);
 
66
                //*)
 
67
 
 
68
                //(*Identifiers(DirListDlg)
 
69
                static const long ID_TEXTCTRL1;
 
70
                static const long ID_BUTTON1;
 
71
                static const long ID_BUTTON2;
 
72
                static const long ID_BUTTON3;
 
73
                static const long ID_BUTTON4;
 
74
                //*)
 
75
 
 
76
                DECLARE_EVENT_TABLE()
 
77
};
 
78
 
 
79
#endif