/usr/include/qxrunner/aboutdialog.h is in libqxrunner-dev 0.9.2-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*!
* \file aboutdialog.h
*
* \brief Declares class AboutDialog.
*/
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include "ui_aboutdialog.h"
namespace QxRunner {
class RunnerModel;
/*!
* \brief The AboutDialog class displays a simple message box about
* QxRunner.
*
*
* The message box shows the version of QxRunner, information about
* the model in use and the version number of Qt being used.
*/
class AboutDialog : public QDialog
{
Q_OBJECT
public: // Operations
/*!
* Constructs an about dialog with the given \a parent
* and \a model.
*/
AboutDialog(QWidget* parent, RunnerModel* model);
/*!
* Destroys this about dialog.
*/
~AboutDialog();
private: // Operations
// Copy and assignment not supported.
AboutDialog(const AboutDialog&);
AboutDialog& operator=(const AboutDialog&);
private: // Attributes
Ui::AboutDialog ui;
};
} // namespace
#endif // ABOUTDIALOG_H
|