mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
66 lines
1.4 KiB
C++
66 lines
1.4 KiB
C++
#ifndef CSV_WIDGET_SCENETOOLRUN_H
|
|
#define CSV_WIDGET_SCENETOOLRUN_H
|
|
|
|
#include <set>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "scenetool.hpp"
|
|
|
|
class QFrame;
|
|
class QTableWidget;
|
|
class QModelIndex;
|
|
class QObject;
|
|
class QPoint;
|
|
|
|
namespace CSVWidget
|
|
{
|
|
class SceneToolbar;
|
|
|
|
class SceneToolRun : public SceneTool
|
|
{
|
|
Q_OBJECT
|
|
|
|
std::set<std::string> mProfiles;
|
|
std::set<std::string>::iterator mSelected;
|
|
QString mToolTip;
|
|
QFrame* mPanel;
|
|
QTableWidget* mTable;
|
|
|
|
private:
|
|
void adjustToolTips();
|
|
|
|
void updateIcon();
|
|
|
|
void updatePanel();
|
|
|
|
public:
|
|
SceneToolRun(SceneToolbar* parent, const QString& toolTip, const QString& icon,
|
|
const std::vector<std::string>& profiles);
|
|
|
|
void showPanel(const QPoint& position) override;
|
|
|
|
void activate() override;
|
|
|
|
/// \attention This function does not remove the profile from the profile selection
|
|
/// panel.
|
|
void removeProfile(const std::string& profile);
|
|
|
|
/// \attention This function doe not add the profile to the profile selection
|
|
/// panel. This only happens when the panel is re-opened.
|
|
///
|
|
/// \note Adding profiles that are already listed is a no-op.
|
|
void addProfile(const std::string& profile);
|
|
|
|
private slots:
|
|
|
|
void clicked(const QModelIndex& index);
|
|
|
|
signals:
|
|
|
|
void runRequest(const std::string& profile);
|
|
};
|
|
}
|
|
|
|
#endif
|