File: FavoritesWindow.h

package info (click to toggle)
fldiff 1.1-1.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 536 kB
  • ctags: 224
  • sloc: cpp: 2,977; makefile: 124
file content (56 lines) | stat: -rw-r--r-- 1,539 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
// "$Id: FavoritesWindow.h 386 2006-03-04 14:15:27Z mike $"
//
// FavoritesWindow widget definitions.
//
// Copyright 2005 by Michael Sweet.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License v2 as published
// by the Free Software Foundation.
//
// 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.
//

#ifndef _FavoritesWindow_h_
#  define _FavoritesWindow_h_
#  include <FL/Fl.H>
#  include <FL/Fl_Double_Window.H>
#  include <FL/Fl_Return_Button.H>
#  include <FL/Fl_File_Browser.H>
#  include <FL/Fl_Preferences.H>


class FavoritesWindow : public Fl_Double_Window
{
  Fl_File_Browser	browser_;
  Fl_Button		up_;
  Fl_Button		delete_;
  Fl_Button		down_;
  Fl_Return_Button	ok_;
  Fl_Button		cancel_;

  static void	browser_cb(Fl_File_Browser *b, FavoritesWindow *fw);
  static void	cancel_cb(Fl_Button *b, FavoritesWindow *fw);
  static void	delete_cb(Fl_Button *b, FavoritesWindow *fw);
  static void	down_cb(Fl_Button *b, FavoritesWindow *fw);
  void		load();
  static void	ok_cb(Fl_Return_Button *b, FavoritesWindow *fw);
  void		save();
  static void	up_cb(Fl_Button *b, FavoritesWindow *fw);

  public:

		FavoritesWindow();
  void		show();
};


#endif // !_FavoritesWindow_h_

//
// End of "$Id: FavoritesWindow.h 386 2006-03-04 14:15:27Z mike $".
//