032f290767
This change enforces strict include grouping using IncludeCategories
In addition to adding this to the .clang-format file and applying it in the tests/src and src directories, I also did the following small changes:
In ChatterSet.hpp, I changed lrucache to a <>include
In Irc2.hpp, I change common/SignalVector.hpp to a "project-include"
In AttachedWindow.cpp, NativeMessaging.cpp, WindowsHelper.hpp, BaseWindow.cpp, and StreamerMode.cpp, I disabled clang-format for the windows-includes
In WindowDescriptors.hpp, I added the missing vector include. It was previously not needed because the include was handled by another file that was previously included first.
clang-format minimum version has been bumped, so Ubuntu version used in the check-formatting job has been bumped to 22.04 (which is the latest LTS)
87 lines
1.5 KiB
C++
87 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QObject>
|
|
|
|
#include <type_traits>
|
|
|
|
namespace chatterino {
|
|
/// Holds a pointer to a QObject and resets it to nullptr if the QObject
|
|
/// gets destroyed.
|
|
template <typename T>
|
|
class QObjectRef
|
|
{
|
|
public:
|
|
QObjectRef()
|
|
{
|
|
static_assert(std::is_base_of_v<QObject, T>);
|
|
}
|
|
|
|
explicit QObjectRef(T *t)
|
|
{
|
|
static_assert(std::is_base_of_v<QObject, T>);
|
|
|
|
this->set(t);
|
|
}
|
|
|
|
QObjectRef(const QObjectRef &other)
|
|
{
|
|
this->set(other.t_);
|
|
}
|
|
|
|
~QObjectRef()
|
|
{
|
|
this->set(nullptr);
|
|
}
|
|
|
|
QObjectRef &operator=(T *t)
|
|
{
|
|
this->set(t);
|
|
|
|
return *this;
|
|
}
|
|
|
|
operator bool()
|
|
{
|
|
return t_;
|
|
}
|
|
|
|
T *operator->()
|
|
{
|
|
return t_;
|
|
}
|
|
|
|
T *get()
|
|
{
|
|
return t_;
|
|
}
|
|
|
|
private:
|
|
void set(T *other)
|
|
{
|
|
// old
|
|
if (this->conn_)
|
|
{
|
|
QObject::disconnect(this->conn_);
|
|
}
|
|
|
|
// new
|
|
if (other)
|
|
{
|
|
// the cast here should absolutely not be necessary, but gcc still requires it
|
|
this->conn_ =
|
|
QObject::connect((QObject *)other, &QObject::destroyed, qApp,
|
|
[this](QObject *) {
|
|
this->set(nullptr);
|
|
},
|
|
Qt::DirectConnection);
|
|
}
|
|
|
|
this->t_ = other;
|
|
}
|
|
|
|
std::atomic<T *> t_{};
|
|
QMetaObject::Connection conn_;
|
|
};
|
|
} // namespace chatterino
|