modificados los iconos del input de b?squeda

modificado el estilo de las titled toolbars
This commit is contained in:
Luis Ángel San Martín
2013-06-15 11:35:36 +02:00
commit efd004d2dd
522 changed files with 44592 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#ifndef YACREADER_LOCAL_SERVER_H
#define YACREADER_LOCAL_SERVER_H
#include <QObject>
class QLocalServer;
class YACReaderLocalServer : public QObject
{
Q_OBJECT
public:
explicit YACReaderLocalServer(QObject *parent = 0);
signals:
public slots:
bool isListening();
void sendResponse();
static bool isRunning();
private:
QLocalServer * localServer;
};
#endif // YACREADER_LOCAL_SERVER_H