File: dlgaddbrowser.h

package info (click to toggle)
bookmarkbridge 0.72-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,764 kB
  • ctags: 667
  • sloc: sh: 10,502; cpp: 7,491; perl: 2,136; makefile: 203
file content (68 lines) | stat: -rw-r--r-- 3,062 bytes parent folder | download
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
57
58
59
60
61
62
63
64
65
66
67
68
/***************************************************************************
                          dlgaddbrowser.h  -  description
                             -------------------
    begin                : Sat Nov 16 2002
    copyright            : (C) 2002 by Ken Schenke
    email                : kenschenke at yahoo dot com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 *   In addition, as a special exception, Ken Schenke gives permission to  *
 *   link the code of this program with the Qt non-commercial edition (or  *
 *   with modified versions of the Qt non-commercial edition that use the  *
 *   same license as the Qt non-commercial edition, and distribute linked  *
 *   combinations including the two.  You must obey the GNU General Public *
 *   License in all respects for all of the code used other than the Qt    *
 *   Non-Commercial edition.  If you modify this file, you may extend this *
 *   exception to your version of the file, but you are not obligated to   *
 *   do so.  If you do not wish to do so, delete this exception statement  *
 *   from your version.                                                    *
 *                                                                         *
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   The DlgAddBrowser class represents a dialog box used to display a     *
 *   list of browsers to the user, allowing them to select a browser as an *
 *   origin or destination.                                                *
 *                                                                         *
 ***************************************************************************/

#ifndef DLGADDBROWSER_H
#define DLGADDBROWSER_H

#include "dlgaddbrowserbase.h"
#include "bridgecfg.h"

#include <vector>

class DlgAddBrowser : public DlgAddBrowserBase
{
	Q_OBJECT
public:
	DlgAddBrowser(
		const std::vector<BrowserCfg> &browsers,
		QWidget* parent = 0,
		const char* name = 0,
		bool modal = FALSE,
		WFlags f = 0);
	virtual ~DlgAddBrowser();

	BRWSNUM		ordinal;	// the ordinal of the currently selected browser

	virtual void listBrowsersSelectionChanged(QListViewItem *);

private:
	const std::vector<BrowserCfg> m_browsers;

	void    refreshButtons(void);
	void    refreshList(void);
};

#endif  // end of DLGADDBROWSER_H