blob: 1898b3ec44fdff10a26cae1eaae091359f0179d0 (
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
|
// apt_options.h
//
// Copyright 2000 Daniel Burrows
//
// The main options dialog
#ifndef APT_OPTIONS_H
#define 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
|