在 c++ 中使用 FLTK 的简单电话簿
大家好,我想使用 FLTK 用 C++ 制作电话簿作为我项目的一部分。它应该有添加、删除、修改和搜索号码的选项。 由于我是 FLTK 新手,有人可以建议我应该使用哪些小部件以及如何使用吗? 另外,我计划将电话簿的内容写入一个文本文件,该文件的条目将在需要时被检索/写入。所以非图形代码很容易。有人可以建议我如何使用 FLTK 将图形集成到其中吗? 提前致谢
Hi guys I want to make a phone book in c++ using FLTK as a part of my project. It should have options to add, delete,modify and search the numbers.
Since I am new to FLTK can some one suggest which widgets should I use and how?
Also I am planning to write the contents of phonebook into a text file whose entries will be retrieved/ written into as and when required. So non graphical code is easy . Can some suggest how do I integrate graphics into this using FLTK?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您首先在论文中画出用户界面的草图。例如这样:
然后你到这里:http://www.fltk.org/doc-2.0/html/index.html 并查找小部件的名称你需要。或者,执行 Hello World 示例,以便您了解 FLTK 如何编译为 C++ 程序。一些提示:您需要一个用于添加、修改和删除的按钮,一个用于查找和编辑每个条目详细信息的输入,以及一个选择浏览器姓名列表。
I'd suggest you first draw a sketch of the user interface in a paper. Like this for instance :
Then you go here : http://www.fltk.org/doc-2.0/html/index.html and find the names of the widgets you need. Optionally, do the Hello World example so that you understand how FLTK is compiled into a C++ program. Some hints : you want a button for Add, Modify and Delete, an input for the Find and for editing the details of each entry plus a select browser for the list of names.