~akirad/cinecutie/trunk

« back to all changes in this revision

Viewing changes to TODO.dir/diffpatch/4/mainmenu.h.patch

  • Committer: Paolo Rampino
  • Date: 2010-03-08 16:31:37 UTC
  • Revision ID: git-v1:9ad8e050eef4a4777c099f39dc4ef1553387dfeb
Added TODO.dir to help develop added credits

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- cinecutie/mainmenu.h        2008-07-21 21:14:00.000000000 +0200
 
2
+++ /home/user/cinecutie/cinecutie/mainmenu.h   2010-02-19 22:19:11.968571001 +0100
 
3
@@ -35,7 +35,6 @@
 
4
 class ShowCWindow;
 
5
 class ShowLWindow;
 
6
 class Undo;
 
7
-class KeyframeType;
 
8
 
 
9
 #include "arraylist.h"
 
10
 #include "guicast.h"
 
11
@@ -63,14 +62,13 @@
 
12
 public:
 
13
        MainMenu(MWindow *mwindow, MWindowGUI *gui);
 
14
        ~MainMenu();
 
15
-       void create_objects();
 
16
+       int create_objects();
 
17
        int load_defaults(BC_Hash *defaults);
 
18
        int save_defaults(BC_Hash *defaults);
 
19
 
 
20
 // most recent loads
 
21
        int add_load(char *path);
 
22
        int init_loads(BC_Hash *defaults);
 
23
-       int save_loads(BC_Hash *defaults);
 
24
 
 
25
 // most recent effects
 
26
        int init_aeffects(BC_Hash *defaults);
 
27
@@ -91,10 +89,9 @@
 
28
        MenuAEffects *aeffects;
 
29
        MenuVEffects *veffects;
 
30
 
 
31
-// for previous document loader
 
32
        Load *load_file;
 
33
+       BC_RecentList *recent_load;
 
34
        LoadPrevious *load[TOTAL_LOADS];
 
35
-       int total_loads;
 
36
 
 
37
 
 
38
        RecordMenuItem *record;
 
39
@@ -109,7 +106,6 @@
 
40
        int total_veffects;
 
41
        BC_Menu *filemenu, *audiomenu, *videomenu;      // needed by most recents
 
42
 
 
43
-       KeyframeType *keyframe_type;
 
44
        LabelsFollowEdits *labels_follow_edits;
 
45
        PluginsFollowEdits *plugins_follow_edits;
 
46
        CursorOnFrames *cursor_on_frames;
 
47
@@ -143,7 +139,7 @@
 
48
 public:
 
49
        Undo(MWindow *mwindow);
 
50
        int handle_event();
 
51
-       int update_caption(const char *new_caption = "");
 
52
+       int update_caption(char *new_caption = "");
 
53
        MWindow *mwindow;
 
54
 };
 
55
 
 
56
@@ -186,7 +182,7 @@
 
57
 public:
 
58
        Redo(MWindow *mwindow);
 
59
        int handle_event();
 
60
-       int update_caption(const char *new_caption = "");
 
61
+       int update_caption(char *new_caption = "");
 
62
        MWindow *mwindow;
 
63
 };
 
64
 
 
65
@@ -262,23 +258,6 @@
 
66
        MWindow *mwindow;
 
67
 };
 
68
 
 
69
-class BendKeyframes : public BC_MenuItem
 
70
-{
 
71
-public:
 
72
-       BendKeyframes(MWindow *mwindow);
 
73
-       int handle_event();
 
74
-       MWindow *mwindow;
 
75
-};
 
76
-
 
77
-class KeyframeType : public BC_MenuItem
 
78
-{
 
79
-public:
 
80
-       KeyframeType(MWindow *mwindow, int type);
 
81
-       int handle_event();
 
82
-       MWindow *mwindow;
 
83
-       int new_type;
 
84
-};
 
85
-
 
86
 class CutDefaultKeyframe : public BC_MenuItem
 
87
 {
 
88
 public:
 
89
@@ -335,14 +314,6 @@
 
90
        MWindow *mwindow;
 
91
 };
 
92
 
 
93
-class DetachTransitions : public BC_MenuItem
 
94
-{
 
95
-public:
 
96
-       DetachTransitions(MWindow *mwindow);
 
97
-       int handle_event();
 
98
-       MWindow *mwindow;
 
99
-};
 
100
-
 
101
 class MuteSelection : public BC_MenuItem
 
102
 {
 
103
 public: