KShare/src/utils.hpp

28 lines
994 B
C++
Raw Normal View History

#ifndef UTILS_HPP
#define UTILS_HPP
2017-04-23 15:05:48 +02:00
2017-07-01 17:24:03 +02:00
#include <QApplication>
#include <QPixmap>
2018-05-09 20:40:57 +02:00
#include <QIcon>
#include <QScreen>
#include <QWidget>
#include <functional>
2017-04-23 15:05:48 +02:00
namespace utils {
QColor invertColor(QColor color);
QPixmap extend(QPixmap pixmap, int extraSize = 25, QColor hl = Qt::transparent);
2017-10-05 19:21:52 +02:00
QPixmap fullscreen(bool cursor = true);
QPixmap fullscreenArea(bool cursor = true, qreal x = 0, qreal y = 0, qreal w = -1, qreal h = -1);
QPixmap window(WId wid, QScreen *w = QApplication::primaryScreen());
void toClipboard(QString value);
QPoint smallestScreenCoordinate();
QPixmap
renderText(QString toRender, int padding = 5, QColor background = Qt::transparent, QColor pen = Qt::white, QFont font = QFont());
void externalScreenshot(std::function<void(QPixmap)> callback);
void externalScreenshotActive(std::function<void(QPixmap)> callback);
QString randomString(int length);
2018-05-09 20:40:57 +02:00
QIcon getTrayIcon(int num);
} // namespace utils
2017-04-23 15:05:48 +02:00
#endif // UTILS_HPP