KDE UI Tutorial
Preface: Conventions
   Copyright
   Version History
   Code Listing
Step 0: Getting Started
Step 1: Initial Code
Step 2: Core Dump
Step 2: Line by Line
Step 3: Detail... Details..
Step 4: App Specific Details

Additional Notes

Kurt Granroth <granroth@kde.org>

Preface: Conventions

Copyright

This tutorial is Copyright (C) 2000 Kurt Granroth <granroth@kde.org>. All rights reserved.

Version History

1.0 (Feb 25, 2000) - Initial Version
1.01 (Apr 4, 2000) - Additional notes added by Emily Ezust <emilye@corel.com>
1.02 (Sep 5, 2000) - Minor fixes

Code Listing

Most sections will have quite a bit of code listed; it will be displayed in a box as shown below. The lines that the author feels are important will be highlighted in bold.

 Listing Description
class ExampleClass: public ParentClass
{
    Q_OBJECT
public:
    ExampleClass(QWidget *parent, const char *name);
    virtual ~ExampleClass();

    virtual void someImportantMethod();

private:
    QWidget *widget;

    NewWidget *m_newWidget;
};


<< Prev Next >>