annotate examples/mainwindows/README @ 114:547cd31fa12a

CMake: improve of the windows support for ldc.
author SokoL_SD
date Wed, 03 Jun 2009 15:53:24 +0000
parents e78566595089
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
e78566595089 initial import
mandel
parents:
diff changeset
1 All the standard features of application main windows are provided by Qt.
e78566595089 initial import
mandel
parents:
diff changeset
2
e78566595089 initial import
mandel
parents:
diff changeset
3 Main windows can have pull down menus, tool bars, and dock windows. These
e78566595089 initial import
mandel
parents:
diff changeset
4 separate forms of user input are unified in an integrated action system that
e78566595089 initial import
mandel
parents:
diff changeset
5 also supports keyboard shortcuts and accelerator keys in menu items.
e78566595089 initial import
mandel
parents:
diff changeset
6
e78566595089 initial import
mandel
parents:
diff changeset
7
e78566595089 initial import
mandel
parents:
diff changeset
8 The example launcher provided with Qt can be used to explore each of the
e78566595089 initial import
mandel
parents:
diff changeset
9 examples in this directory.
e78566595089 initial import
mandel
parents:
diff changeset
10
e78566595089 initial import
mandel
parents:
diff changeset
11 Documentation for these examples can be found via the Tutorial and Examples
e78566595089 initial import
mandel
parents:
diff changeset
12 link in the main Qt documentation.
e78566595089 initial import
mandel
parents:
diff changeset
13
e78566595089 initial import
mandel
parents:
diff changeset
14
e78566595089 initial import
mandel
parents:
diff changeset
15 Finding the Qt Examples and Demos launcher
e78566595089 initial import
mandel
parents:
diff changeset
16 ==========================================
e78566595089 initial import
mandel
parents:
diff changeset
17
e78566595089 initial import
mandel
parents:
diff changeset
18 On Windows:
e78566595089 initial import
mandel
parents:
diff changeset
19
e78566595089 initial import
mandel
parents:
diff changeset
20 The launcher can be accessed via the Windows Start menu. Select the menu
e78566595089 initial import
mandel
parents:
diff changeset
21 entry entitled "Qt Examples and Demos" entry in the submenu containing
e78566595089 initial import
mandel
parents:
diff changeset
22 the Qt tools.
e78566595089 initial import
mandel
parents:
diff changeset
23
e78566595089 initial import
mandel
parents:
diff changeset
24 On Mac OS X:
e78566595089 initial import
mandel
parents:
diff changeset
25
e78566595089 initial import
mandel
parents:
diff changeset
26 For the binary distribution, the qtdemo executable is installed in the
e78566595089 initial import
mandel
parents:
diff changeset
27 /Developer/Applications/Qt directory. For the source distribution, it is
e78566595089 initial import
mandel
parents:
diff changeset
28 installed alongside the other Qt tools on the path specified when Qt is
e78566595089 initial import
mandel
parents:
diff changeset
29 configured.
e78566595089 initial import
mandel
parents:
diff changeset
30
e78566595089 initial import
mandel
parents:
diff changeset
31 On Unix/Linux:
e78566595089 initial import
mandel
parents:
diff changeset
32
e78566595089 initial import
mandel
parents:
diff changeset
33 The qtdemo executable is installed alongside the other Qt tools on the path
e78566595089 initial import
mandel
parents:
diff changeset
34 specified when Qt is configured.
e78566595089 initial import
mandel
parents:
diff changeset
35
e78566595089 initial import
mandel
parents:
diff changeset
36 On all platforms:
e78566595089 initial import
mandel
parents:
diff changeset
37
e78566595089 initial import
mandel
parents:
diff changeset
38 The source code for the launcher can be found in the demos/qtdemo directory
e78566595089 initial import
mandel
parents:
diff changeset
39 in the Qt package. This example is built at the same time as the Qt libraries,
e78566595089 initial import
mandel
parents:
diff changeset
40 tools, examples, and demonstrations.