rework histogram_bezier, init wm icon set_icon(gg), update de.po+msg/txt
[goodguy/history.git] / cinelerra-5.1 / cinelerra / tipwindow.h
index 131a7c11a0b33066f0fbc0df20726ddeeff6ea73..cbed6f10eb1f44c84b31ad5e00cefdfafa1cf5c1 100644 (file)
@@ -2,32 +2,39 @@
 /*
  * CINELERRA
  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
+ *
  * 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.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
+ *
  */
 
 #ifndef TIPWINDOW_H
 #define TIPWINDOW_H
 
 #include "bcdialog.h"
+#include "cstrdup.h"
 #include "guicast.h"
 #include "mwindow.inc"
 #include "tipwindow.inc"
 
 
+class Tips : public ArrayList<const char *> {
+public:
+       Tips() { set_array_delete(); }
+       ~Tips() { remove_all_objects(); }
+       void add(const char *tip) { append(cstrdup(tip)); }
+};
 
 // Tip of the day to be run at initialization
 
@@ -40,7 +47,8 @@ public:
        void handle_close_event(int result);
 
        BC_Window* new_gui();
-       char* get_current_tip(int n);
+       static void load_tips(const char *lang);
+       const char* get_current_tip(int n);
        void next_tip();
        void prev_tip();
 
@@ -52,7 +60,7 @@ public:
 class TipWindowGUI : public BC_Window
 {
 public:
-       TipWindowGUI(MWindow *mwindow, 
+       TipWindowGUI(MWindow *mwindow,
                TipWindow *thread,
                int x,
                int y);