mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
7df7da70cb
Remove unused constructor of messages::Message Fixed LimitedQueueSnapshot _-prefixes Changed LimitedQueueSnapshot's usage of int to std::size_t ColorScheme is no longer a singleton Created a "BaseWidget" class which is pretty much a QWidget except it has a reference of ColorScheme since most widgets will need a reference to the style they should use. BaseWidget can be implemented either with a BaseWidget parent (which will copy the ColorScheme reference from the parent) or with a normal QWidget parent and an explicit ColorScheme reference. Save main window geometry on close Fix font changing in the Settings Dialog Update settings library version
40 lines
702 B
C++
40 lines
702 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace chatterino {
|
|
namespace messages {
|
|
|
|
template <typename T>
|
|
class LimitedQueueSnapshot
|
|
{
|
|
public:
|
|
LimitedQueueSnapshot(std::shared_ptr<std::vector<T>> _vector, std::size_t _offset,
|
|
std::size_t _size)
|
|
: vector(_vector)
|
|
, offset(_offset)
|
|
, length(_size)
|
|
{
|
|
}
|
|
|
|
std::size_t getLength()
|
|
{
|
|
return length;
|
|
}
|
|
|
|
T const &operator[](std::size_t index) const
|
|
{
|
|
return vector->at(index + offset);
|
|
}
|
|
|
|
private:
|
|
std::shared_ptr<std::vector<T>> vector;
|
|
|
|
std::size_t offset;
|
|
std::size_t length;
|
|
};
|
|
|
|
} // namespace messages
|
|
} // namespace chatterino
|