2015-02-02 09:30:17 +01:00
|
|
|
//=============================================================================
|
|
|
|
// MuseScore
|
|
|
|
// Music Composition & Notation
|
|
|
|
//
|
|
|
|
// Copyright (C) 2015 Werner Schweer
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2
|
|
|
|
// as published by the Free Software Foundation and appearing in
|
|
|
|
// the file LICENCE.GPL
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
#ifndef __HELP_H__
|
|
|
|
#define __HELP_H__
|
|
|
|
|
|
|
|
namespace Ms {
|
|
|
|
|
2015-02-06 16:36:43 +01:00
|
|
|
class HelpEngine;
|
|
|
|
|
2015-02-02 09:30:17 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// HelpQuery
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
class HelpQuery : public QWidgetAction {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
QWidget* w;
|
|
|
|
QLineEdit* entry;
|
|
|
|
QList<QAction*> actions;
|
2015-02-06 20:38:10 +01:00
|
|
|
QSignalMapper* mapper;
|
|
|
|
|
2015-02-02 09:30:17 +01:00
|
|
|
bool emptyState;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void textChanged(const QString&);
|
2015-02-06 20:38:10 +01:00
|
|
|
void actionTriggered(QObject*);
|
2015-02-09 10:23:21 +01:00
|
|
|
void returnPressed();
|
2015-02-06 20:38:10 +01:00
|
|
|
|
|
|
|
public slots:
|
2015-02-09 10:23:21 +01:00
|
|
|
void setFocus();
|
2015-02-02 09:30:17 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
HelpQuery(QWidget* parent);
|
|
|
|
};
|
|
|
|
|
2015-02-06 16:36:43 +01:00
|
|
|
|
2015-02-02 09:30:17 +01:00
|
|
|
} // end namespace Ms
|
2015-02-06 16:36:43 +01:00
|
|
|
|
|
|
|
|
2015-02-02 09:30:17 +01:00
|
|
|
#endif
|