summaryrefslogtreecommitdiff
path: root/LiteEditor/AddFunctionsImpDlg.h
diff options
context:
space:
mode:
authorJames Cowgill <james410@cowgill.org.uk>2014-03-21 12:42:00 +0000
committerJames Cowgill <james410@cowgill.org.uk>2014-03-21 12:42:00 +0000
commit01b494f950c9a63763683747ca330a2c70855f0f (patch)
tree00faa33f79482dc7d19db1b06e189e7760477a75 /LiteEditor/AddFunctionsImpDlg.h
parenta00e9147b0128de0375a207b4f81494e7a0681d4 (diff)
Imported Upstream version 5.4+dfsg
Diffstat (limited to 'LiteEditor/AddFunctionsImpDlg.h')
-rw-r--r--LiteEditor/AddFunctionsImpDlg.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/LiteEditor/AddFunctionsImpDlg.h b/LiteEditor/AddFunctionsImpDlg.h
new file mode 100644
index 00000000..f627e7ea
--- /dev/null
+++ b/LiteEditor/AddFunctionsImpDlg.h
@@ -0,0 +1,46 @@
+//////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
+//
+// copyright : (C) 2013 by Eran Ifrah
+// file name : AddFunctionsImpDlg.h
+//
+// -------------------------------------------------------------------------
+// A
+// _____ _ _ _ _
+// / __ \ | | | | (_) |
+// | / \/ ___ __| | ___| | _| |_ ___
+// | | / _ \ / _ |/ _ \ | | | __/ _ )
+// | \__/\ (_) | (_| | __/ |___| | || __/
+// \____/\___/ \__,_|\___\_____/_|\__\___|
+//
+// F i l e
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+//////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
+
+#ifndef ADDFUNCTIONSIMPDLG_H
+#define ADDFUNCTIONSIMPDLG_H
+#include "wxcrafter.h"
+#include "entry.h"
+
+class AddFunctionsImpDlg : public AddFunctionsImplBaseDlg
+{
+ TagEntryPtrVector_t m_tags;
+public:
+ AddFunctionsImpDlg(wxWindow* parent, const TagEntryPtrVector_t &tags, const wxString &targetFile);
+ virtual ~AddFunctionsImpDlg();
+
+ wxString GetText() const;
+ wxString GetFileName() const;
+protected:
+ virtual void OnOKUI(wxUpdateUIEvent& event);
+ virtual void OnCheckAll(wxCommandEvent& event);
+ virtual void OnUncheckAll(wxCommandEvent& event);
+};
+
+#endif // ADDFUNCTIONSIMPDLG_H