source: Dev/branches/jQueryUI/client/widgets_old/Toolbox.php @ 254

Last change on this file since 254 was 249, checked in by hendrikvanantwerpen, 13 years ago

This one's for Subversion, because it's so close...

First widget (stripped down sequencer).
Seperated client and server code in two direcotry trees.

File size: 2.2 KB
Line 
1<?php
2/*
3 * To change this template, choose Tools | Templates
4 * and open the template in the editor.
5 */
6
7/**
8 * Description of ToolBox
9 *
10 * @author HP
11 */
12class Toolbox {
13
14    public function __construct() {
15        ?>
16
17        <br />
18
19        <div id="toolbox" class="largeFrame">
20            <div class="largeTitle">Toolbox</div>
21            <div class="content">
22                <p style="float: left; clear:both; margin-bottom: 1em;">Add new:</p>
23                <ul id="toolboxMenu">
24                    <li>
25                        <div class="bigButton toolbox" onclick="ddMenu.Open('toolbox_m1')"><img src="images/icons/survey.png" class="buttonIcon" /><p>Survey</p>
26                            <div id="toolbox_m1" onmouseover="ddMenu.CancelCloseTimer()" onmouseout="ddMenu.SetCloseTimer()">
27                                <a href="#" onclick="submitToolbox('Survey')">+ Add new</a>
28                                <a href="#">> Add existing</a>
29                            </div>
30
31                        </div>
32                    </li>
33                    <li>
34                        <div class="bigButton toolbox" onClick="ddMenu.Open('toolbox_m2')"><img src="images/icons/application.png" class="buttonIcon" /><p>Application</p>
35                            <div id="toolbox_m2" onmouseover="ddMenu.CancelCloseTimer()" onmouseout="ddMenu.SetCloseTimer()">
36                                <a href="#" onclick="submitToolbox('Application')">+ Add new</a>
37                                <a href="#">> Add existing</a>
38                            </div>
39                        </div>
40                    </li>
41                    <li>
42                        <div class="bigButton toolbox" onClick="ddMenu.Open('toolbox_m3')"><img src="images/icons/dashboard.png" class="buttonIcon" /><p>Dashboard</p>
43                            <div id="toolbox_m3" onmouseover="ddMenu.CancelCloseTimer()" onmouseout="ddMenu.SetCloseTimer()">
44                                <a href="#">+ Add new</a>
45                                <a href="#">> Add existing</a>
46                            </div>
47                        </div>
48                    </li>
49                </ul>
50            </div>
51        </div>
52        <?php
53    }
54
55}
56?>
Note: See TracBrowser for help on using the repository browser.