QtDesigner 中的工作流程

发布于 2024-08-02 05:35:04 字数 340 浏览 2 评论 0原文

我正在使用 Qt 2009.03 和 Visual Studio 插件 1.0.2。我正在编写一个应用程序,该应用程序具有打开非模式窗口的命令,并且可以同时打开多个窗口。

这些窗口本身需要在 QtDesigner 中设计。我正在寻找的示例可以在 Firefox 中找到。如果我转到“工具/插件”,它会打开一个子窗口。

我不确定 QtDesigner 中正确的工作流程是什么。我认为它可能是一个“框架”,但这似乎不是一个窗口,带有标准的关闭/最小化选项卡和菜单栏。我想也许是(来自 Visual Studio)文件/新项目/Qt4 项目/Qt4 设计器插件。这会生成一些类,但没有 .ui 文件可供我进行设计。

I'm using Qt 2009.03 with the Visual Studio addon 1.0.2. I'm writing an application that has commands to open non-modal windows, and multiple windows can be opened at the same time.

These windows themselves need to be designed in QtDesigner. An example of what I'm looking for can be found in Firefox. If I go to Tools / Addons it opens a child window.

I'm not sure what is the correct workflow in QtDesigner. I thought it might be a "Frame" but that doesn't seem to be a window, with your standard close / minimize tabs and menu bar. I thought perhaps it was (from Visual Studio) File / New Project / Qt4 Projects / Qt4 Designer plugin. That generates some classes, but there's no .ui file for me to design with.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

相思故 2024-08-09 05:35:04

在 Visual Studio 中,当我想要设计一个新窗口时,我使用的工作流程是通过 Project->Add Class...->Qt4 Classes->Qt4GuiClass 添加 Qt GUI 类。

然后,根据需要填写表单,VS 加载项将添加适当的 ui 和 moc 文件。双击 ui 文件将打开 Qt Designer,您可以使用它来布局窗口。

In Visual Studio, the workflow I use when I want to design a new window is to add a Qt GUI class with Project->Add Class...->Qt4 Classes->Qt4GuiClass.

Then, fill out the form as necessary and the VS add-in will add the appropriate ui and moc files. Double clicking on the ui file will bring up Qt Designer, which you can use to lay your window out.

作业与我同在 2024-08-09 05:35:04

考虑重述这个问题,我不确定我是否理解问题所在——如何创建 ui 文件?如何在VS中创建ui文件? (或 Creator?)您的窗口基于什么 Qt 类?还有别的事吗?

你使用 QtCreator 还是 VS 与 Qt 集成? (或者有混合方法吗?O_o)

无论如何,您始终可以单独打开 QtDesigner 并在其中创建 ui 文件。然后将其添加到 .pro 文件(假设您使用的是 .pro 而不是直接使用 VS 解决方案)。

对于基本窗口,您甚至可以使用 QWidget。装饰(标题栏、系统菜单、最小化等)取决于传递给构造函数的窗口标志。

Consider restating the question, I'm not sure I understood what the problem is -- how to create a ui file? How to create ui file inside VS? (or Creator?) What Qt class to base your window on? Something else?

Do you use QtCreator or VS with Qt integration? (Or is there hybrid approach? O_o)

Anyway, you can always open QtDesigner separately and create ui file inside. Then add it to .pro file (assuming you are using .pro and not VS solution directly).

For base window you can even use QWidget. Decorations (titlebar, system menu, minimize, etc) depend on window flags passed into constructor.

溺深海 2024-08-09 05:35:04

以您的示例为例:

  • Firefox 主窗口是 QMainWindow
  • 插件窗口是 QDialog (非模式)

您可以通过在解决方案资源管理器中右键单击您的项目,单击“添加”并选择“添加”来创建 Qt 设计器 UI (VS 2003) Qt GUI 类”。

Taking your example:

  • the Firefox main window is a QMainWindow
  • the addin window is a QDialog (non-modal)

You create a Qt designer UI (VS 2003) by right clicking your project in the solution explorer, clicking "Add" and selecting "Add Qt GUI class".

北渚 2024-08-09 05:35:04

通常您在应用程序中使用 QMainWindow 作为主窗口。这将为您提供最小化和关闭按钮。在 QMainWindow 中,您可以通过右键单击 QtDesigner 中的表单来添加或删除菜单栏。

对于非模型窗口,您通常会使用 QDialog。这也将为您提供最小化和关闭按钮。

您肯定使用 Visual Studio 插件(在 Qt Designer 中打开 ui 文件)吗?

还有视觉工作室集成。 (在 Visual Studio 中打开 ui 文件并提供编辑工具)

Usually you use a QMainWindow for the main window in your application. This will give you your minimise, and close buttons. In your QMainWindow you can add or remove a menu bar by right clicking on the form in QtDesigner.

For a non-model window, you would normally use a QDialog. This will also give you your minimise, and close buttons.

Are you definately using the visual studio add-in (opens ui files in Qt Designer)?

There is also the visual studio integration. (opens ui files within visual studio and provides tools to edit it)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文