libyui-qt-pkg
Loading...
Searching...
No Matches
YQPkgProductDialog.h
1/*
2 Copyright (c) 2000 - 2010 Novell, Inc.
3 Copyright (c) 2021 SUSE LLC
4
5 This library is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
8 License, or (at your option) version 3.0 of the License. This library
9 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12 License for more details. You should have received a copy of the GNU
13 Lesser General Public License along with this library; if not, write
14 to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
15 Floor, Boston, MA 02110-1301 USA
16*/
17
18
19/*
20 File: YQPkgProductDialog.h
21 Author: Stefan Hundhammer <shundhammer.de>
22*/
23
24
25#ifndef YQPkgProductDialog_h
26#define YQPkgProductDialog_h
27
28#include <QDialog>
29
30
31class QTabWidget;
34
35
39class YQPkgProductDialog : public QDialog
40{
41 Q_OBJECT
42
43public:
44
48 static void showProductDialog( QWidget* parent = 0);
49
55 virtual QSize sizeHint () const;
56
62 virtual void polish();
63
64
65protected:
66
70 YQPkgProductDialog( QWidget * parent );
71
72
73 // Data members
74
75 YQPkgProductList * _productList;
76 QTabWidget * _detailsViews;
77 YQPkgDependenciesView * _dependenciesView;
78};
79
80
81#endif // ifndef YQPkgProductDialog_h
Display technical details ( very much like 'rpm -qi' ) for a zypp::Package object - the installed ins...
Definition YQPkgDependenciesView.h:40
Definition YQPkgProductDialog.h:40
static void showProductDialog(QWidget *parent=0)
Definition YQPkgProductDialog.cc:157
YQPkgProductDialog(QWidget *parent)
Definition YQPkgProductDialog.cc:56
virtual QSize sizeHint() const
Definition YQPkgProductDialog.cc:146
virtual void polish()
Definition YQPkgProductDialog.cc:134
Display a list of zypp::Product objects.
Definition YQPkgProductList.h:40