单文件Qt4演示
有时您需要在 Qt4 中创建一个非常简单的单文件应用程序。然而,这是有问题的,因为你总是进行 CPP/H 分离,然后 main() 位于另一个文件中...
有什么想法如何在单个文件中执行此操作吗?尽快弄脏。
Sometimes you need to create a very simple single file application in Qt4. However it's problematic since you are always doing the CPP/H separation, and then the main() is in another file...
Any ideas how to do this in a single file? As quick as dirty as possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个示例,展示了如何在单个文件中执行此操作。只需将其放入一个新目录中,将其另存为“main.cpp”,然后运行 qmake -project; qmake; make 进行编译。
这个演示中有两个技巧:
This is an example that shows how to do this in a single file. Just throw this in a new directory, save it as "main.cpp" and then run
qmake -project; qmake; make
to compile.Two tricks in this demo:
如果您需要构建快速原型,使用 Python 和 PyQt4 甚至更好紧凑:
无需调用
qmake
或打扰.moc
文件。If you need to build a quick prototype, using Python and PyQt4 is even more compact:
No need to call
qmake
or to bother with.moc
files.