VAPOR3 3.9.4
PStringInput.h
Go to the documentation of this file.
1#pragma once
2
3#include "PLineItem.h"
4//#include "VaporWidgetsFwd.h"
5
7
11
12class PStringInput : public PLineItem {
13 VStringLineEdit *_stringLineEdit;
14
15public:
16 PStringInput(const std::string &tag, const std::string &label = "");
17
18protected:
19 void updateGUI() const override;
20
21private:
22 void inputValueChanged(const std::string &v);
23};
PStringInput(const std::string &tag, const std::string &label="")
void updateGUI() const override
A wrapper for a QLineEdit that handles user input of type string, and provides Vapor's standard sette...