Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/5952e03b530d66cb93b70d252880b7aea1abaf50/src/desktop/UBCustomCaptureWindow.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard
OpenBoard/src/desktop/UBCustomCaptureWindow.h

46 lines
1.2 KiB

/*
* UNCustomCaptureWindow.h
*
* Created on: Feb 2, 2009
* Author: julienbachmann
*/
#ifndef UBCUSTOMCAPTUREWINDOW_H_
#define UBCUSTOMCAPTUREWINDOW_H_
#include <QtGui>
/**
* This class is used to do the custom capture of Uninotes
**/
class UBCustomCaptureWindow : public QDialog
{
Q_OBJECT;
public:
UBCustomCaptureWindow(QWidget *parent = 0);
virtual ~UBCustomCaptureWindow();
// launch the custom capture window based on pSreenPixmap.
// The function returns a DialogCode result.
int execute(const QPixmap &pScreenPixmap);
// return the selected area pixmap.
QPixmap getSelectedPixmap();
protected:
virtual void showEvent ( QShowEvent * event );
virtual void mouseMoveEvent ( QMouseEvent * event );
virtual void mousePressEvent ( QMouseEvent * event );
virtual void mouseReleaseEvent ( QMouseEvent * event );
virtual void keyPressEvent ( QKeyEvent * event );
virtual void paintEvent(QPaintEvent *event);
QPixmap mWholeScreenPixmap;
QRubberBand *mSelectionBand;
QStyle *mRubberBandStyle;
QPoint mOrigin;
bool mIsSelecting;
};
#endif /* UBCUSTOMCAPTUREWINDOW_H_ */