KDE TechBase
  • Page
  • Discussion
  • Edit
  • History
KDE TechBase is a Wiki - You can help! Please contribute! Questions?

Development/Tutorials/Programming Tutorial KDE 4/Using QTableWidget

< Development | Tutorials | Programming Tutorial KDE 4
Warning
noframe
This page has been nominated for speedy deletion. This delay is intended to give the contributor time to modify the page to make it relevant. If it is relevant, please remove this tag.

If you disagree with its speedy deletion, remove the template and discuss it on its talk page.

Administrators: Please check the page history, especially the last diff, and What links here before deleting.


Use this as main.cpp:

#include <kapplication.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <QTableWidget>
#include <QHeaderView>
 
int main (int argc, char *argv[])
{
  KAboutData aboutData( "test", "test",
      "1.0", "test", KAboutData::License_GPL,
      "(c) 2007" );
  KCmdLineArgs::init( argc, argv, &aboutData );
  KApplication khello;
 
  QTableWidget* mw=new QTableWidget(0);
 
  QStringList labels;
  labels << "Greeting" << "Planet";
  mw->setColumnCount(2);
  mw->setEditTriggers(QAbstractItemView::AllEditTriggers);
  mw->setHorizontalHeaderLabels(labels);
  mw->horizontalHeader()->setStretchLastSection(true);
  mw->insertRow(0);
  QTableWidgetItem* item=new QTableWidgetItem("Hello");
  item->setFlags(Qt::ItemIsEnabled);
  item->setWhatsThis("You can change this task's comment, start time and end time.");
  mw->setItem(0,0,item);
  QTableWidgetItem* item2=new QTableWidgetItem("World");
  mw->setItem(0,1,item2);
  mw->show();
  khello.exec();
}

Use this as CMakeLists.txt:

PROJECT( ktablewidget )
FIND_PACKAGE(KDE4 REQUIRED)
INCLUDE_DIRECTORIES( ${KDE4_INCLUDES} . )


SET(ktablewidgetsources main.cpp )

KDE4_ADD_EXECUTABLE(ktablewidget ${ktablewidgetsources} )

TARGET_LINK_LIBRARIES(ktablewidget ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS} )

Compile it using

cmakekde

Call it using

ktablewidget
Retrieved from "http://techbase.kde.org/Development/Tutorials/Programming_Tutorial_KDE_4/Using_QTableWidget"

Category: Marked for Deletion

Navigation

  • Home
  • Help
  • Recent changes

Sections

  • Getting started
  • Development
  • Schedules
  • Policies
  • Contribute
  • Projects

Toolbox

  • What links here
  • Related changes
  • Upload file
  • Special pages
  • Printable version
  • Permanent link

Personal tools

  • Log in / create account
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. Qt® and Trolltech® are registered trademarks of Trolltech ASA. Linux® is a registered Trademark of Linus Torvalds. | Legal