书栈网 · BookStack 本次搜索耗时 0.027 秒,为您找到 771 个相关结果.
  • Page Sizes

    Page Sizes The default page size of the rendered document is A4, but using this --page-size optionthis can be changed to almost anything else, such as: A3, Letter and Legal. Fo...
  • QString

    QString QString 通常在Qt中文本操作是基于unicode完成的。你需要使用QString 类来完成这个事情。它包含了很多好用的功能函数,这与其它流行的框架类似。对于8位的数据你通常需要使用QByteArray 类,对于ASCII校验最好使用QLatin1String 来暂存。对于一个字符串链你可以使用QList<QString> 或者...
  • event()

    2013 2019-05-26 《Qt 学习之路 2》
    前面的章节中我们曾经提到event() 函数。事件对象创建完毕后,Qt 将这个事件对象传递给QObject 的event() 函数。event() 函数并不直接处理事件,而是将这些事件对象按照它们不同的类型,分发给不同的事件处理器(event handler)。 如上所述,event() 函数主要用于事件的分发。所以,如果你希望在事件分发之前做一些操作,...
  • Using the Editor

    532 2021-10-08 《Qt6 QML Book》
    Using the Editor Using the Editor When you open a project or you just created a new project Qt Creator will switch to the edit mode. You should see on the left of your project f...
  • GraphView::EdgeConfiguration

    GraphView::EdgeConfiguration GraphView::EdgeConfiguration struct GraphView ::EdgeConfiguration Public Members QColor color = QColor(128, 128, 128) bool start_arrow = fa...
  • 进程间通信

    1866 2019-05-26 《Qt 学习之路 2》
    上一章我们了解了有关进程的基本知识。我们将进程理解为相互独立的正在运行的程序。由于二者是相互独立的,就存在交互的可能性,也就是我们所说的进程间通信(Inter-Process Communication,IPC)。不过也正因此,我们的一些简单的交互方式,比如普通的信号槽机制等,并不适用于进程间的相互通信。我们说过,进程是操作系统的基本调度单元,因此,进程间...
  • Reading arguments from stdin

    Reading arguments from stdin If you need to convert a lot of pages in a batch, and you feel that wkhtmltopdf is a bit too slow to start up, then you should try --read-args-from-s...
  • 第8篇 设置主窗口状态栏

    2402 2019-05-26 《Qt 5 基础教程》
    第8篇 设置主窗口状态栏 版权声明 导语 正文 结语 第8篇 设置主窗口状态栏 版权声明 该文章原创于Qter开源社区( http://www.qter.org ),作者 yafeilinux ,转载请注明出处! 可以到 这里 讨论本文章! 导语 在程序主窗口QMainWindow中,主要包含菜单栏、工具栏、中心部件和状态...
  • 使用拖放

    1545 2019-05-26 《Qt 学习之路 2》
    拖放(Drag and Drop),通常会简称为 DnD,是现代软件开发中必不可少的一项技术。它提供了一种能够在应用程序内部甚至是应用程序之间进行信息交换的机制。操作系统与应用程序之间进行的剪贴板内容的交换,也可以被认为是拖放的一部分。 拖放其实是由两部分组成的:拖动和释放。拖动是将被拖放对象进行移动,释放是将被拖放对象放下。前者是一个按下鼠标按键并移动...
  • 13.3. 图形桌面

    13.3. 图形桌面 13.3.1. GNOME 13.3.2. KDE and Plasma 13.3.3. Xfce 和其他 13.3.4. Other Desktop Environments 13.3. 图形桌面 The free graphical desktop field is dominated by two large so...