免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2093 | 回复: 0
打印 上一主题 下一主题

Qt实现类似shell的东东 可是用不了 错在哪里呢 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-04-01 16:22 |只看该作者 |倒序浏览

  1. #include "shelldemo.h"
  2. #include <QLineEdit>
  3. #include <QTextBlock>
  4. #include <QDebug>
  5. #include <QPlainTextEdit>
  6. //#include <private/qplaintextedit_p.h> //无法找到

  7. #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
  8. #include <private/v8.h>
  9. #endif

  10. ShellDemo::ShellDemo(QWidget *parent) :
  11.     QPlainTextEdit(parent)
  12. {
  13.     setReadOnly(true);

  14.     QFont font = this->font();
  15.     font.setPointSize(font.pointSize()+2);
  16.     this->setFont(font);

  17.     appendPlainText(">>> ");
  18.     edit = new QLineEdit(this->viewport());
  19.     edit->setStyleSheet("border-style:none; background-color:transparent;");

  20.     connect(edit, SIGNAL(returnPressed()), SLOT(onEditFinished()));
  21.     //connect(verticalScrollBar(), SIGNAL(valueChanged(int)), SLOT(onScrollBarValueChanged()));
  22. }

  23. void ShellDemo::resizeEvent(QResizeEvent *e)
  24. {
  25.     updateEditPosition();
  26. }

  27. void ShellDemo::onScrollBarValueChanged()
  28. {
  29.     updateEditPosition();
  30. }

  31. QString ShellDemo::runCommand(const QString &cmd)
  32. {
  33.     return QString("Result of %1").arg(cmd);
  34. }

  35. void ShellDemo::onEditFinished()
  36. {
  37.     QString cmd = edit->text();
  38.     if (cmd.isEmpty()) {
  39.         return;
  40.     }
  41.     moveCursor(QTextCursor::End);
  42.     insertPlainText(cmd);
  43.     //edit->hide();
  44.     edit->clear();

  45.     appendPlainText(runCommand(cmd));

  46.     appendPlainText(">>> ");
  47.     updateEditPosition();
  48.     edit->show();
  49.     edit->setFocus();
  50. }

  51. void ShellDemo::updateEditPosition()
  52. {
  53.     QPlainTextEditPrivate *d = reinterpret_cast<QPlainTextEditPrivate*>(qGetPtrHelper(d_ptr));

  54.     //QRectF rect = d->control->blockBoundingRect(d->control->document()->lastBlock());  //无法通过编译
  55.     //edit->move(rect.topRight().toPoint());
  56.     //edit->resize(viewport()->size().width(), edit->size().height());
  57. }
复制代码
按照 http://blog.csdn.net/dbzhang800/article/details/6751775 的方法在qt4.85环境下无法编译通过

报错信息是
错误1 找不到#include <private/qplaintextedit_p.h>

错误2 invalid use of undefined type ‘struct QPlainTextEditPrivate’
/usr/local/Trolltech/Qt-4.8.5/include/QtGui/qplaintextedit.h:65: 错误:forward declaration of ‘struct QPlainTextEditPrivate’

就是出在 QRectF rect = d->control->blockBoundingRect(d->control->document()->lastBlock()) 这一句
好像私有类不能这么用
求高人解释 急求!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP