Guitar
RepositoryLineEdit.h
Go to the documentation of this file.
1 #ifndef REPOSITORYLINEEDIT_H
2 #define REPOSITORYLINEEDIT_H
3 
4 #include <QLineEdit>
5 
6 class RepositoryLineEdit : public QLineEdit {
7  Q_OBJECT
8 protected:
9  void dropEvent(QDropEvent *event) override;
10  bool eventFilter(QObject *watched, QEvent *event);
11 public:
12  explicit RepositoryLineEdit(QWidget *parent = nullptr);
13 };
14 
15 #endif // REPOSITORYLINEEDIT_H
RepositoryLineEdit::RepositoryLineEdit
RepositoryLineEdit(QWidget *parent=nullptr)
Definition: RepositoryLineEdit.cpp:8
RepositoryLineEdit
Definition: RepositoryLineEdit.h:6
RepositoryLineEdit::dropEvent
void dropEvent(QDropEvent *event) override
Definition: RepositoryLineEdit.cpp:35
misc.h
misc::complementRemoteURL
static QString complementRemoteURL(QString url, bool toggle)
リモートURLの形式を補完または変換する。
Definition: misc.cpp:488
RepositoryLineEdit.h
RepositoryLineEdit::eventFilter
bool eventFilter(QObject *watched, QEvent *event)
Definition: RepositoryLineEdit.cpp:14