OK, en realidad he escrito un código que hace lo que necesito. Lo bueno es que es bastante fácil en Qt.
La información del edificio se encuentra al final de esta publicación.
xclipshow.cpp:
#include <QApplication>
#include <QTimer>
#include <QClipboard>
#include <QMimeData>
#include <QDebug>
#include <QStringList>
class App: public QObject {
Q_OBJECT
private:
void main();
public:
App(): QObject() { }
public slots:
void qtmain() { main(); emit finished(); }
signals:
void finished();
};
void App::main() {
QClipboard *clip = QApplication::clipboard();
for(QString& formatName: clip->mimeData()->formats()) {
std::string s;
s = formatName.toStdString();
QByteArray arr = clip->mimeData()->data(formatName);
printf("name=%s, size=%d: ", s.c_str(), arr.size());
for(int i = 0; i < arr.size(); i++) {
printf("%02x ", (unsigned char) arr.at(i));
}
printf("\n");
}
}
int main(int argc, char **argv) {
QApplication app(argc, argv);
App *task = new App();
QObject::connect(task, SIGNAL(finished()), & app, SLOT(quit()));
QTimer::singleShot(0, task, SLOT(qtmain()));
return app.exec();
}
#include "xclipshow.moc"
CMakeLists.txt:
cmake_minimum_required(VERSION 3.0.0)
project(xclipshow)
find_package(Qt5Widgets)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(SRC
xclipshow.cpp)
add_definitions(-std=c++11)
add_executable(xclipshow ${SRC})
qt5_use_modules(xclipshow Widgets Core)
Información de construcción según lo solicitado en el comentario de @slm: depende del sistema que esté utilizando. Este código necesita Qt5 y CMake para compilar. Si tiene ambos, todo lo que necesita hacer es ejecutar:
BUILD_DIR=<path to an empty temporary dir, which will contain the executable file>
SRC_DIR=<path to the directory which contains xclipshow.cpp>
$ cd $BUILD_DIR
$ cmake $SRC_DIR
$ make
o 'gmake' si estás en FreeBSD, o 'mingw32-make' si estás en Windows, etc.
Si no tiene Qt5 o CMake, puede intentar salirse con Qt4 y la compilación manual:
$ moc xclipshow.cpp > xclipshow.moc
$ g++ xclipshow.cpp -o xclipshow `pkg-config --cflags --libs QtGui` -I. --std=c++11
Si obtiene información sobre una --std=c++11
opción no válida , intente--std=c++0x
y considere actualizar su compilador;).