/usr/include/qxrunner/statuswidget.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 | /*!
* \file statuswidget.h
*
* \brief Declares class StatusWidget.
*/
#ifndef STATUSWIDGET_H
#define STATUSWIDGET_H
#include "ui_statuswidget.h"
namespace QxRunner {
/*!
* \brief The StatusWidget class presents QxRunner status information.
*
* The information mainly consists of counters such as number of items,
* number of errrors, execution progress and the like. Actual values
* must be inserted by clients. The status widget is placed in the
* statusbar of the main window.
*
* \sa \ref main_window
*/
class StatusWidget : public QWidget
{
Q_OBJECT
public: // Operations
/*!
* Constructs a status widget with the given \a parent.
*/
StatusWidget(QWidget* parent);
/*!
* Destroys this status widget.
*/
~StatusWidget();
public: // Attributes
Ui::StatusWidget ui;
private: // Operations
// Copy and assignment not supported.
StatusWidget(const StatusWidget&);
StatusWidget& operator=(const StatusWidget&);
};
} // namespace
#endif // STATUSWIDGET_H
|