This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 199074
Collapse All | Expand All

(-)a/core.windows/src/org/netbeans/core/windows/resources/mode-properties2_3.dtd (-2 / +7 lines)
Lines 44-50 Link Here
44
-->
44
-->
45
45
46
<!--
46
<!--
47
-//NetBeans//DTD Mode Properties 2.3//EN
47
-//NetBeans//DTD Mode Properties 2.4//EN
48
-->
48
-->
49
49
50
<!-- The root element for mode properties. Consists of name, optional
50
<!-- The root element for mode properties. Consists of name, optional
Lines 78-87 Link Here
78
78
79
<!-- Element name
79
<!-- Element name
80
    "unique" represents unique ID of mode
80
    "unique" represents unique ID of mode
81
    "includes" contains a list of names of other modes that were merged into this one.
81
-->
82
-->
82
<!ELEMENT name      EMPTY >
83
<!ELEMENT name      EMPTY >
83
<!ATTLIST name
84
<!ATTLIST name
84
    unique CDATA #REQUIRED
85
    unique CDATA #REQUIRED
86
    includes CDATA #IMPLIED
85
>
87
>
86
88
87
<!-- Element kind
89
<!-- Element kind
Lines 97-103 Link Here
97
-->
99
-->
98
<!ELEMENT slidingSide      EMPTY >
100
<!ELEMENT slidingSide      EMPTY >
99
<!ATTLIST slidingSide
101
<!ATTLIST slidingSide
100
    side (left | right | bottom) #REQUIRED
102
    side (left | right | bottom | top) #REQUIRED
101
>
103
>
102
104
103
105
Lines 114-123 Link Here
114
<!-- Element state
116
<!-- Element state
115
    "type" state of mode "joined" (is inside of main window) or "separated" 
117
    "type" state of mode "joined" (is inside of main window) or "separated" 
116
    (is in its own native window separated from main window).
118
    (is in its own native window separated from main window).
119
    "minimized" state "true" means that any window opened in this mode is
120
    automatically minimized (slided out).
117
-->
121
-->
118
<!ELEMENT state      EMPTY >
122
<!ELEMENT state      EMPTY >
119
<!ATTLIST state
123
<!ATTLIST state
120
    type (joined | separated) #REQUIRED
124
    type (joined | separated) #REQUIRED
125
    minimized (true | false) #IMPLIED
121
>
126
>
122
127
123
<!-- Absolute bounds rectangle of the mode, stored in attributes
128
<!-- Absolute bounds rectangle of the mode, stored in attributes
(-)a/openide.windows/apichanges.xml (+15 lines)
Lines 50-55 Link Here
50
<apidef name="winsys">Window System API</apidef>
50
<apidef name="winsys">Window System API</apidef>
51
</apidefs>
51
</apidefs>
52
<changes>
52
<changes>
53
<change id="mode.enhancements">
54
    <api name="winsys"/>
55
    <summary>Added more attributes to Mode DTD to support new winsys features.</summary>
56
    <version major="6" minor="43"/>
57
    <date day="1" month="6" year="2011"/>
58
    <author login="saubrecht"/>
59
    <compatibility addition="yes" source="compatible" semantic="compatible" deprecation="no" deletion="no" modification="no"/>
60
    <description>
61
        New window system features - sliding bar for minimized windows at the top
62
        of the main window, drag and drop of the whole window group and minimization
63
        of the whole window group - require small additions to Mode DTD.
64
    </description>
65
    <issue number="198853"/>
66
    <issue number="198854"/>
67
</change>
53
<change id="mainwindow.custom.background">
68
<change id="mainwindow.custom.background">
54
    <api name="winsys"/>
69
    <api name="winsys"/>
55
    <summary>Allow custom painted background in the main IDE window.</summary>
70
    <summary>Allow custom painted background in the main IDE window.</summary>
(-)a/openide.windows/manifest.mf (-1 / +1 lines)
Lines 1-6 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.openide.windows
2
OpenIDE-Module: org.openide.windows
3
OpenIDE-Module-Specification-Version: 6.41
3
OpenIDE-Module-Specification-Version: 6.43
4
OpenIDE-Module-Localizing-Bundle: org/openide/windows/Bundle.properties
4
OpenIDE-Module-Localizing-Bundle: org/openide/windows/Bundle.properties
5
AutoUpdate-Essential-Module: true
5
AutoUpdate-Essential-Module: true
6
6

Return to bug 199074