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

« back to all changes in this revision

Viewing changes to src/plugins/todo/asktypedlg.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 the Code::Blocks IDE and licensed under the GNU General Public License, version 3
 
3
 * http://www.gnu.org/licenses/gpl-3.0.html
 
4
 */
 
5
 
 
6
#ifndef ASKTYPEDLG_H
 
7
#define ASKTYPEDLG_H
 
8
 
 
9
#include <wx/dialog.h>
 
10
 
 
11
enum TypeCorrection
 
12
{
 
13
    tcCppMove = 0, // keep C++ style and move to end of line
 
14
    tcCppStay, // keep C++ style and use the current position
 
15
    tcCpp2C, // switch to c style
 
16
};
 
17
 
 
18
class AskTypeDlg : public wxDialog
 
19
{
 
20
    public:
 
21
        AskTypeDlg(wxWindow* parent);
 
22
        virtual ~AskTypeDlg();
 
23
 
 
24
        TypeCorrection GetTypeCorrection() const;
 
25
};
 
26
 
 
27
#endif // ASKTYPEDLG_H
 
28