学习资源汇总

学习资源汇总

AutoHotkey学习资源

  • 中文在线帮助文档
  • 英文在线帮助文档
  • 更快的使用你的键盘:AUTOHOTKEY
  • AutoHotkey 学习指南(最近更新: 2012-03-09)

Windows Live Writer写博客

Windows Live Writer配置步骤(cnblogs博客园)

#include <QApplication>
#include <QWidget>
#include <QDebug>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QWidget widget;
    widget.resize(400, 300);
    widget.move(200, 100);
    widget.show();
    int x = widget.x();
    qDebug("x:%d", x);
    int y = widget.y();
    qDebug("y:%d", y);

    QRect geometry = widget.geometry();
    QRect frame = widget.frameGeometry();
    qDebug() << "geometry:" << geometry << "frame:" << frame;
    qDebug() << "pos:" << widget.pos() << endl << "rect:" << widget.rect()
             << endl << "size:" << widget.size() << endl << "width:"
             << widget.width() << endl << "height:" << widget.height();
    return a.exec();
}

你可能感兴趣的:(学习资源汇总)