1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#include "QFitsBaseView.h"
QFitsBaseView::QFitsBaseView(QWidget *parent) : QWidget(parent) {
}
void QFitsBaseView::switchBackgroundColor() {
// if (backgroundRole() == QPalette::Window) {
// setBackgroundRole(QPalette::Dark);
// } else {
setBackgroundRole(QPalette::Window);
// }
}
void QFitsBaseView::setMousePressedPos(int x, int y) {
mousePressedPosX = x;
mousePressedPosY = y;
}
void QFitsBaseView::getMousePressedPos(int *x, int *y) {
*x = mousePressedPosX;
*y = mousePressedPosY;
}
|