diff options
author | Arno <am@disconnect.de> | 2010-11-28 11:58:57 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-11-28 11:58:57 +0100 |
commit | d1837c9c92c9f38a464f0473001db4e9a57d44e7 (patch) | |
tree | 9d815a4c1e1c550871565c92d7e0c8f312f05f72 /configurationdialog.h | |
parent | eb4139c5c525c03d4c75c0a47acc92157008ca06 (diff) | |
download | SheMov-d1837c9c92c9f38a464f0473001db4e9a57d44e7.tar.gz SheMov-d1837c9c92c9f38a464f0473001db4e9a57d44e7.tar.bz2 SheMov-d1837c9c92c9f38a464f0473001db4e9a57d44e7.zip |
Added action to copy file path to clipboard
4 new actions to copy the file path to clipboard. It's either the unix
full path, the unix dir, the windows full path or the windows dir. For
the latter '/' is replaced with '\' and a drive letter is prepended.
The drive letter is configurable in the ConfigurationDialog. While at it
I revamped it and added another tab to make it more user friendly.
Diffstat (limited to 'configurationdialog.h')
-rw-r--r-- | configurationdialog.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configurationdialog.h b/configurationdialog.h index f97a2d9..edbe219 100644 --- a/configurationdialog.h +++ b/configurationdialog.h @@ -23,7 +23,7 @@ class ConfigurationDialog : public QDialog { Q_OBJECT public: ConfigurationDialog(QWidget *parent = 0, Qt::WindowFlags f = 0); - ~ConfigurationDialog() {}; + ~ConfigurationDialog() {} public slots: void accept(); @@ -46,6 +46,8 @@ class ConfigurationDialog : public QDialog { QLineEdit *mDatabaseName; QLineEdit *mDatabaseUsername; QLineEdit *mDatabasePassword; + QLineEdit *mWindowsDrive; + QLineEdit *mStripPath; QComboBox *mIconForFolder; QCheckBox *mHoverPics; QCheckBox *mHoverArchive; |