summaryrefslogtreecommitdiff
path: root/LiteEditor/colourrequest.h
diff options
context:
space:
mode:
authorChow Loong Jin <hyperair@gmail.com>2009-03-18 01:38:42 +0800
committerChow Loong Jin <hyperair@gmail.com>2009-03-18 01:38:42 +0800
commit88bf04fce19ef94891d54e11c3604ad31bd1d46e (patch)
tree34fa3ad4f9768f63d86273468fd60c84fa05f553 /LiteEditor/colourrequest.h
parent3d717c7047ccf0181289325da69e555556d759b3 (diff)
Imported Upstream version 1.0.2785
Diffstat (limited to 'LiteEditor/colourrequest.h')
-rw-r--r--LiteEditor/colourrequest.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/LiteEditor/colourrequest.h b/LiteEditor/colourrequest.h
new file mode 100644
index 00000000..92658a01
--- /dev/null
+++ b/LiteEditor/colourrequest.h
@@ -0,0 +1,42 @@
+//////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
+//
+// copyright : (C) 2008 by Eran Ifrah
+// file name : colourrequest.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 __colourrequest__
+#define __colourrequest__
+#include "wx/filename.h"
+#include "worker_thread.h"
+
+class ColourRequest : public ThreadRequest
+{
+
+ wxFileName m_fileToColour;
+
+public:
+ ColourRequest();
+ ~ColourRequest();
+
+ void SetFileToColour(const wxFileName& fileToColour) ;
+ const wxFileName& GetFileToColour() const ;
+};
+#endif // __colourrequest__