X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientbufferviewconfig.h;h=5211b1e5a046462fb94df3846ffecf3d7785a4a6;hp=1bd188f0964e489dc89b361c72def5327d7de018;hb=a95ad2de573027f9bee36db972bcae4195168d0c;hpb=ee7d56f3abdb6ee4ce6c79ddea0142407b4e9e74 diff --git a/src/client/clientbufferviewconfig.h b/src/client/clientbufferviewconfig.h index 1bd188f0..5211b1e5 100644 --- a/src/client/clientbufferviewconfig.h +++ b/src/client/clientbufferviewconfig.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,27 +15,30 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef CLIENTBUFFERVIEWCONFIG_H -#define CLIENTBUFFERVIEWCONFIG_H +#pragma once + +#include "client-export.h" #include "bufferviewconfig.h" -class ClientBufferViewConfig : public BufferViewConfig { - Q_OBJECT +class CLIENT_EXPORT ClientBufferViewConfig : public BufferViewConfig +{ + Q_OBJECT public: - ClientBufferViewConfig(int bufferViewId, QObject *parent = 0); + ClientBufferViewConfig(int bufferViewId, QObject* parent = nullptr); + + inline bool isLocked() { return _locked || sortAlphabetically(); } + inline void setLocked(bool locked) { _locked = locked; } + inline void lock() { setLocked(true); }; + inline void unlock() { setLocked(false); }; - inline bool isLocked() { return _locked || sortAlphabetically(); } - inline void setLocked(bool locked) { _locked = locked; } - inline void lock() { setLocked(true); }; - inline void unlock() { setLocked(false); }; +private slots: + void ensureDecoration(); // remove this in next release private: - bool _locked; + bool _locked; }; - -#endif //CLIENTBUFFERVIEWCONFIG_H