Model View Tutorial Part1 CVirtualCdRack/de: Difference between revisions
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Decode HTML entity names) |
m (Wieland moved page Qt german-Model View Tutorial Teil1 CVirtualCdRack to Model View Tutorial Part1 CVirtualCdRack/de: not english) |
Latest revision as of 13:00, 26 May 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
Table of Content
↑Übersicht Model/View Tutorial:CD Verwaltung↑
Allgemeines: Klasse CdRack→
Die Klasse VirtualCdRack
Die Klasse VirtualCdRack bildet das Hauptfenster der Anwendung.
Sie erstellt die Menüs, Toolbars und die Statusbar.
Des weiteren hält sie eine Instanz der Datenklasse CdRack, eine Instanz des Datenmodells CdModel.
Sie erstellt eine QTabelView-Instanz und verbindet sie mit dem Modell.
- {
- for(int i = 0; i < MaxRecentFiles; ++i)
- m_recentFileActs[i] = 0;
- init();
- setCurrentFile("");
- readSettings();
- }
- void VirtualCdRack::init()
- {
- m_isUntitled = true;
- m_model = new CdModel(m_data, this);
- m_view = new QTableView;
- m_view->setModel(m_model);
- m_view->setAlternatingRowColors(true);
- setCentralWidget(m_view);
- createActions();
- createMenus();
- createToolBars();
- createStatusBar();
- connect(&m_data, SIGNAL(contentsChanged()), this, SLOT(documentWasModified()));
- }
Struktur der XML-Datei mit den CDs
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE CdRack>
- <CdRack version="1.0">
- <CD title="On and On" author="Fiddler's Green" genre="Irish Folk" year="1997">
- <CD title="Von Spitzbuben und anderen Halunken" author="Schandmaul" genre="Mittelalter-Rock" year="2001">
- <CD title="Look Sharp" author="Roxette" genre="Rock" year="1988">
- <CD title="Oceanborn" author="Nightwish" genre="Hardrock" year="1998">
- </CdRack>
- --
**