Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "E4/CSS/SWT Mapping"

< E4‎ | CSS
(New page: setBackground(Color) control background-color Button { background-color: #FF0000 } setBackgroundImage(Image) control ...)
 
(Replacing page with '<table border="1"> <tr> <th>Heading</th> <th>Another Heading</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</...')
Line 1: Line 1:
setBackground(Color)              control                background-color                        Button { background-color: #FF0000 }
+
<table border="1">
 
+
<tr>
setBackgroundImage(Image)          control                background-image                        Button { background-image: ''some url'' }
+
<th>Heading</th>
 
+
<th>Another Heading</th>
                                  control                border-color                            Button { border-color: ##FF0000 }
+
</tr>
 
+
<tr>
                                  control                border-width                            Button { border-width: 3 }
+
<td>row 1, cell 1</td>
 
+
<td>row 1, cell 2</td>
                                  control                border-style                            Button { border-style: dotted }
+
</tr>
 
+
<tr>
setCursor(Cursor)                  control                cursor                                  Shell { cursor:  }
+
<td>row 2, cell 1</td>
 
+
<td>row 2, cell 2</td>
setFont(Font)                      control                font-style                              Label { font-style: italic;
+
</tr>
 
+
</table>
                                  control                font-size                                      font-size: 12
+
 
+
                                  control                font-weight                                    font-weight: bold;
+
 
+
                                  control                font-family                                    font-family: "Terminal"; }
+
 
+
setForegroundColor(Color)          control                color                                  Button { color: #FF0000 }
+
 
+
setBorderVisible(Boolean)          CTabFolder            borderVisible                          CTabFolder { borderVisible: true }
+
 
+
setMaximized(Boolean)              CTabFolder            maximized                              CTabFolder { maximized: true }
+
 
+
setMinimized(Boolean)              CTabFolder            minimized                              CTabFolder { minimized: true }
+
 
+
setMaxmizeVisible(Boolean)        CTabFolder            maxmimizeVisible                        CTabFolder { maximizeVisible: true }
+
 
+
setMinimizeVisible(Boolean)        CTabFolder            minimizeVisible                        CTabFolder { minimizeVisible: true }
+
 
+
setMRUVisible(Boolean)            CTabFolder            mruVisible                              CTabFolder { mruVisible: true }
+
 
+
setShowClose(Boolean)              CTabFolder            showClose                              CTabFolder { showClose: true }
+
 
+
setSimple(Boolean)                CTabFolder            simple                                  CTabFolder { simple: true }
+
 
+
setSingle(Boolean)                CTabFolder            single                                  CTabFolder { single: true }
+
 
+
setUnselectedCloseVisible(Boolean) CTabFolder            unselectedCloseVisible                  CTabFolder { unselectedCloseVisible: true }
+
 
+
setUnselectedImageVisible(Boolean) CTabFolder            unselectedImageVisible                  CTabFolder { unselectedImageVisible: true }
+

Revision as of 14:23, 25 February 2009

Heading Another Heading
row 1, cell 1 row 1, cell 2
row 2, cell 1 row 2, cell 2

Back to the top