summaryrefslogtreecommitdiff
path: root/src/apt_options.h
blob: 7d528b3d68a9a14c285befecbc1e612dd3ea9f76 (plain)
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
// apt_options.h
//
//  Copyright 2000 Daniel Burrows
//

#ifndef APT_OPTIONS_H
#define APT_OPTIONS_H

/** \brief The main options dialog
 * 
 *  \file apt_options.h
 */

namespace cwidget
{
  namespace util
  {
    template<class T> class ref_ptr;
  }

  namespace widgets
  {
    class widget;

    typedef util::ref_ptr<widget> widget_ref;
  }
}

// hmm, maybe just make this a global variable that gets shown and hidden?
cwidget::widgets::widget_ref make_ui_options_dialog();
cwidget::widgets::widget_ref make_misc_options_dialog();
cwidget::widgets::widget_ref make_dependency_options_dialog();


namespace aptitude
{
  namespace ui
  {
    namespace config
    {
      cwidget::widgets::widget_ref make_options_tree();
    }
  }
}

#endif