~ubuntu-branches/ubuntu/lucid/codelite/lucid

« back to all changes in this revision

Viewing changes to LiteEditor/batchbuilddlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-01-12 15:46:55 UTC
  • Revision ID: james.westby@ubuntu.com-20090112154655-sdynrljcb6u167yw
Tags: upstream-1.0.2674+dfsg
ImportĀ upstreamĀ versionĀ 1.0.2674+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//////////////////////////////////////////////////////////////////////////////
 
2
//////////////////////////////////////////////////////////////////////////////
 
3
//
 
4
// copyright            : (C) 2008 by Eran Ifrah                            
 
5
// file name            : batchbuilddlg.h              
 
6
//                                                                          
 
7
// -------------------------------------------------------------------------
 
8
// A                                                                        
 
9
//              _____           _      _     _ _                            
 
10
//             /  __ \         | |    | |   (_) |                           
 
11
//             | /  \/ ___   __| | ___| |    _| |_ ___                      
 
12
//             | |    / _ \ / _  |/ _ \ |   | | __/ _ )                     
 
13
//             | \__/\ (_) | (_| |  __/ |___| | ||  __/                     
 
14
//              \____/\___/ \__,_|\___\_____/_|\__\___|                     
 
15
//                                                                          
 
16
//                                                  F i l e                 
 
17
//                                                                          
 
18
//    This program is free software; you can redistribute it and/or modify  
 
19
//    it under the terms of the GNU General Public License as published by  
 
20
//    the Free Software Foundation; either version 2 of the License, or     
 
21
//    (at your option) any later version.                                   
 
22
//                                                                          
 
23
//////////////////////////////////////////////////////////////////////////////
 
24
//////////////////////////////////////////////////////////////////////////////
 
25
 
 
26
#ifndef __batchbuilddlg__
 
27
#define __batchbuilddlg__
 
28
 
 
29
/**
 
30
@file
 
31
Subclass of BatchBuildBaseDlg, which is generated by wxFormBuilder.
 
32
*/
 
33
 
 
34
#include "batchbuildbasedlg.h"
 
35
#include "compiler_action.h"
 
36
#include <list>
 
37
 
 
38
/** Implementing BatchBuildBaseDlg */
 
39
class BatchBuildDlg : public BatchBuildBaseDlg
 
40
{
 
41
        void DoInitialize();
 
42
        void DoSaveBatchBuildOrder();
 
43
        
 
44
public:
 
45
        int m_cmd;
 
46
        
 
47
protected:
 
48
        // Handlers for BatchBuildBaseDlg events.
 
49
        void OnItemSelected( wxCommandEvent& event );
 
50
        void OnItemToggled( wxCommandEvent& event );
 
51
        void OnBuild( wxCommandEvent& event );
 
52
        void OnBuildUI( wxUpdateUIEvent& event );
 
53
        void OnClean( wxCommandEvent& event );
 
54
        void OnCleanUI( wxUpdateUIEvent& event );
 
55
        void OnCheckAll( wxCommandEvent& event );
 
56
        void OnUnCheckAll( wxCommandEvent& event );
 
57
        void OnMoveUp( wxCommandEvent& event );
 
58
        void OnMoveUpUI( wxUpdateUIEvent& event );
 
59
        void OnMoveDown( wxCommandEvent& event );
 
60
        void OnMoveDownUI( wxUpdateUIEvent& event );
 
61
        void OnClose( wxCommandEvent& event );
 
62
        
 
63
public:
 
64
        /** Constructor */
 
65
        BatchBuildDlg( wxWindow* parent );
 
66
        void GetBuildInfoList(std::list<QueueCommand> &buildInfoList);
 
67
        
 
68
};
 
69
 
 
70
#endif // __batchbuilddlg__