rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=39a995dfc458d556f514a9a4b82f23fbea4de405

commit 39a995dfc458d556f514a9a4b82f23fbea4de405
Author: Vitalii Vorobiov <vi.vorob...@samsung.com>
Date:   Wed Jan 27 13:32:16 2016 +0000

    colorclass_manager: move public structures to main_window
---
 src/bin/eflete.h                        |  1 +
 src/bin/ui/editors/colorclass_manager.h | 16 ----------------
 src/bin/ui/main_window.h                | 15 +++++++++++++++
 3 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/bin/eflete.h b/src/bin/eflete.h
index 976b5ea..23d284d 100644
--- a/src/bin/eflete.h
+++ b/src/bin/eflete.h
@@ -59,6 +59,7 @@ typedef struct _History History;
 typedef struct _State State;
 typedef struct _Part Part;
 typedef struct _Shortcuts Shortcuts;
+typedef struct _ColorClassData ColorClassData;
 
 #include "common_macro.h"
 TODO("delete it, and remake all strings to eina_stringshare or eina_strbuff")
diff --git a/src/bin/ui/editors/colorclass_manager.h 
b/src/bin/ui/editors/colorclass_manager.h
index 0a692bb..e6542a9 100644
--- a/src/bin/ui/editors/colorclass_manager.h
+++ b/src/bin/ui/editors/colorclass_manager.h
@@ -29,22 +29,6 @@
 
 #include "eflete.h"
 
-typedef struct _Colorclass_Item Colorclass_Item;
-struct _Colorclass_Item
-{
-   Eina_Stringshare *name;
-   int r1, g1, b1, a1;
-   int r2, g2, b2, a2;
-   int r3, g3, b3, a3;
-};
-
-typedef struct _ColorClassData ColorClassData;
-struct _ColorClassData
-{
-   Colorclass_Item *current_ccl;
-   Evas_Object *edje_preview;
-};
-
 /**
  * Add new colorclass viewer inwin object.
  *
diff --git a/src/bin/ui/main_window.h b/src/bin/ui/main_window.h
index 9b2fdbc..bb1a10c 100644
--- a/src/bin/ui/main_window.h
+++ b/src/bin/ui/main_window.h
@@ -431,4 +431,19 @@ project_export_edc_group(void);
 Evas_Object *
 image_manager_add(void);
 
+typedef struct _Colorclass_Item Colorclass_Item;
+struct _Colorclass_Item
+{
+   Eina_Stringshare *name;
+   int r1, g1, b1, a1;
+   int r2, g2, b2, a2;
+   int r3, g3, b3, a3;
+};
+
+struct _ColorClassData
+{
+   Colorclass_Item *current_ccl;
+   Evas_Object *edje_preview;
+};
+
 #endif /* UI_MAIN_WINDOW_H */

-- 


Reply via email to