Development/Tutorials/Programming Tutorial KDE 4/Using QTreeWidget: Difference between revisions
Appearance
Neverendingo (talk | contribs) m Text replace - "<code cppqt>" to "<syntaxhighlight lang="cpp-qt">" |
Use Template:Proposed_deletion |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{ | {{Proposed_deletion}} | ||
=Code it= | =Code it= | ||
Line 32: | Line 32: | ||
khello.exec(); | khello.exec(); | ||
} | } | ||
</ | </syntaxhighlight> | ||
'''{{path|CMakeLists.txt}}''' | '''{{path|CMakeLists.txt}}''' | ||
< | <syntaxhighlight lang="text"> | ||
PROJECT( ktreewidget ) | PROJECT( ktreewidget ) | ||
FIND_PACKAGE(KDE4 REQUIRED) | FIND_PACKAGE(KDE4 REQUIRED) | ||
Line 45: | Line 45: | ||
TARGET_LINK_LIBRARIES(ktreewidget ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS} ) | TARGET_LINK_LIBRARIES(ktreewidget ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS} ) | ||
</ | </syntaxhighlight> | ||
=Kompile it= | =Kompile it= | ||
Line 54: | Line 54: | ||
./ktreewidget | ./ktreewidget | ||
[[Category:Proposed_deletion]] |
Latest revision as of 12:22, 15 May 2019
![](/images.userbase/thumb/0/02/Flag-red.png/40px-Flag-red.png)
Proposed for Deletion |
---|
This page has been proposed for deletion. |
Code it
main.cpp
#include <kapplication.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <QTableWidget>
#include <QTreeWidget>
#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;
QTreeWidget* mw=new QTreeWidget(0);
QStringList labels;
mw->setColumnCount(2);
mw->setEditTriggers(QAbstractItemView::AllEditTriggers);
QTreeWidgetItem* item=new QTreeWidgetItem(0);
item->setText(1,"hi");
item->setFlags(Qt::ItemIsEnabled);
mw->insertTopLevelItem(0,item);
mw->show();
khello.exec();
}
CMakeLists.txt
PROJECT( ktreewidget )
FIND_PACKAGE(KDE4 REQUIRED)
INCLUDE_DIRECTORIES( ${KDE4_INCLUDES} . )
SET(ktreewidgetsources main.cpp )
KDE4_ADD_EXECUTABLE(ktreewidget ${ktreewidgetsources} )
TARGET_LINK_LIBRARIES(ktreewidget ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS} )
Kompile it
cmake . -DCMAKE_INSTALL_PREFIX=$KDEDIR -DCMAKE_BUILD_TYPE=debugfull && make -j2 VERBOSE=1
Run it
./ktreewidget