wxwidgets 中具有搜索功能的小部件

发布于 2024-11-02 06:37:11 字数 81 浏览 2 评论 0原文

我想知道 wxwidgets 中是否有任何不错的具有搜索功能的小部件。我的意思是在大型表中搜索数据,例如 wxgrid 中的数据。
提前致谢

I was wondering if there were any nice widgets in wxwidgets, with search ability. I mean searching for data in large tables like, data in wxgrid.
Thanks in advance

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

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

发布评论

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

评论(1

把回忆走一遍 2024-11-09 06:37:11

将所有大型数据集存储在 wxGrid 中,然后通过 wxGrid 进行搜索,这在很多方面都是缓慢且低效的。

最好将数据集保存在数据库中并使用数据库引擎对其进行搜索。 wxGrid只需要存储GUI中可见的数据。

这是一些高级伪代码,说明了其工作原理。

  • 将数据加载到存储中。存储可能应该是一个数据库,但它也可能是一个向量或任何 STL 容器。即使是文本文件也可以工作!
  • 将当前可视行设置为合理的值。我假设您的数据按行排列,
  • 将包括当前和周围的行加载到 wxGrid 中。
  • 用户输入搜索词
  • 将搜索请求发送到数据存储,该数据存储返回包含目标的行
  • 将当前行设置为包含目标的
  • 行 将包括当前及其周围的行加载到 wxGrid 中。

It would be slow and inefficient in several ways to store all of a large dataset in wxGrid, and then to search through wxGrid.

It would be better to keep the dataset in a database and use the database engine to search through it. wxGrid need only store the data that is visible in the GUI.

Here is some high level pseudo code of how this works.

  • Load data into store. The store should probably be a database, but it might be a vector or any STL container. Even a text file could be made to work!
  • Set current viewable row to a sensible value. I am assuming your data is arranged in rows
  • Load rows including and around current into wxGrid.
  • User enters search term
  • Send search request to data store, which returns row containing target
  • Set current row to row containing target
  • Load rows including and around current into wxGrid.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文