X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftabcompleter.h;h=96111923bb92dac095e1b211ad86e4e2e5751821;hp=4e11c9d10681c4cd7c85ea4bb70f183bd126848b;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hpb=921e54680da16fcf2adb7a90506875aceb6633a4 diff --git a/src/uisupport/tabcompleter.h b/src/uisupport/tabcompleter.h index 4e11c9d1..96111923 100644 --- a/src/uisupport/tabcompleter.h +++ b/src/uisupport/tabcompleter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,12 +18,13 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef TABCOMPLETER_H_ -#define TABCOMPLETER_H_ +#pragma once +#include "uisupport-export.h" + +#include #include #include -#include #include "types.h" @@ -31,31 +32,32 @@ class MultiLineEdit; class IrcUser; class Network; -class TabCompleter : public QObject +class UISUPPORT_EXPORT TabCompleter : public QObject { Q_OBJECT public: - enum Type { + enum Type + { UserTab = 0x01, ChannelTab = 0x02 }; - explicit TabCompleter(MultiLineEdit *inputLine_); + explicit TabCompleter(MultiLineEdit* inputLine_); void reset(); void complete(); - virtual bool eventFilter(QObject *obj, QEvent *event); + bool eventFilter(QObject* obj, QEvent* event) override; public slots: void onTabCompletionKey(); private: - - struct CompletionKey { - inline CompletionKey(const QString &n) { contents = n; } - bool operator<(const CompletionKey &other) const; + struct CompletionKey + { + inline CompletionKey(const QString& n) { contents = n; } + bool operator<(const CompletionKey& other) const; QString contents; }; @@ -63,7 +65,7 @@ private: bool _enabled; QString _nickSuffix; - static const Network *_currentNetwork; + static const Network* _currentNetwork; static BufferId _currentBufferId; static QString _currentBufferName; static Type _completionType; @@ -76,6 +78,3 @@ private: void buildCompletionList(); }; - - -#endif