📄 fileoption.cc
字号:
/** @file FileOption - class for widget containing one editable string setting, while allowing to either type the name, or use dialog to pick the filename. User's choice @author Martin Petricek*/#include "fileoption.h"#include "dialog.h"#include <qstring.h>namespace gui {/** Default constructor of FileOption item @param parent parent Option Editor containing this control @param _key Key in settings for this option @param defValue Default value if option not found in configuration */FileOption::FileOption(const QString &_key/*=0*/,QWidget *parent/*=0*/,const QString &defValue/*=0*/) : DialogOption (_key,parent,defValue) {}//See DialogOption for description of this abstract methodvoid FileOption::dialog(QString &value) { QString ret; //spawn instance of generic "save file" dialog ret=saveFileDialog(this,value,false,QObject::tr("Pick a file ..."),"file_option"); if (ret.isNull()) return; //No file picked value=ret;}/** default destructor */FileOption::~FileOption() {}} // namespace gui
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -