mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 23:25:53 +08:00
refs #412 command input widget
This commit is contained in:
52
src/blackgui/commandinput.h
Normal file
52
src/blackgui/commandinput.h
Normal file
@@ -0,0 +1,52 @@
|
||||
/* Copyright (C) 2015
|
||||
* swift project community / Contributors
|
||||
*
|
||||
* This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level
|
||||
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
||||
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
||||
* contained in the LICENSE file.
|
||||
*/
|
||||
|
||||
//! \file
|
||||
|
||||
#ifndef BLACKGUI_COMMANDINPUT_H
|
||||
#define BLACKGUI_COMMANDINPUT_H
|
||||
|
||||
#include "blackguiexport.h"
|
||||
#include <QLineEdit>
|
||||
#include <QString>
|
||||
|
||||
namespace BlackGui
|
||||
{
|
||||
|
||||
//! Specialized LineEdit for command inputs
|
||||
class BLACKGUI_EXPORT CCommandInput : public QLineEdit
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
|
||||
//! Constructor
|
||||
CCommandInput(QWidget *parent = nullptr);
|
||||
|
||||
//! Destructor
|
||||
~CCommandInput() {}
|
||||
|
||||
signals:
|
||||
|
||||
//! Command was entered
|
||||
void commandEntered(const QString &command, const QString &originator);
|
||||
|
||||
private slots:
|
||||
|
||||
//! Basic command validation
|
||||
void validateCommand();
|
||||
|
||||
private:
|
||||
|
||||
const QString &commandInputOriginator();
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // CCOMMANDINPUT_H
|
||||
Reference in New Issue
Block a user