mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-16 09:57:19 -05:00
fdfd2e9248
A tooltip show hidden image too. The RSImageBlockWidget is removed.
16 lines
215 B
C++
16 lines
215 B
C++
#ifndef IMAGEUTIL_H
|
|
#define IMAGEUTIL_H
|
|
|
|
#include <QTextCursor>
|
|
#include <QWidget>
|
|
|
|
class ImageUtil
|
|
{
|
|
public:
|
|
ImageUtil();
|
|
|
|
static void extractImage(QWidget *window, QTextCursor cursor);
|
|
};
|
|
|
|
#endif // IMAGEUTIL_H
|