Skip to content

Commit

Permalink
modal dialog box creating a desktop-like application
Browse files Browse the repository at this point in the history
git-svn-id: https://pyjamas.svn.sourceforge.net/svnroot/pyjamas/trunk@400 7a2bd370-bda8-463c-979e-2900ccfb811e
  • Loading branch information
lkcl committed Mar 15, 2009
1 parent aef89c1 commit d2d2524
Show file tree
Hide file tree
Showing 11 changed files with 491 additions and 3 deletions.
102 changes: 102 additions & 0 deletions examples/shell/Screen.py
@@ -0,0 +1,102 @@
from popups import DialogBoxModal
from pyjamas.ui.AbsolutePanel import AbsolutePanel
from pyjamas import Window
from pyjamas import log

class Application(DialogBoxModal):
def __init__(self, screen, title, width, height):
DialogBoxModal.__init__(self, title)
self.screen = screen
self.setText(title)
#self.setWidth(width)
#self.setHeight(height)

def onMouseDown(self, sender, x, y):
log.writebr("down %d %d" % (x, y))
DialogBoxModal.onMouseDown(self, sender, x, y)
self.dragged = False

def onMouseMove(self, sender, x, y):
log.writebr("move %d %d" % (x, y))
if self.dragStartX != x or self.dragStartY != y:
self.dragged = True
DialogBoxModal.onMouseMove(self, sender, x, y)

def onMouseUp(self, sender, x, y):
log.writebr("up %d %d" % (x, y))
DialogBoxModal.onMouseUp(self, sender, x, y)
if not dragged:
self.screen.raise_or_lower(self)

def onClick(self, sender):
if sender == self.closeButton:
self.screen.close_app(self)

class Screen(AbsolutePanel):

def __init__(self, width, height):

AbsolutePanel.__init__(self)
self.setWidth(width)
self.setHeight(height)

self.window = {}
self.window_zindex = {}

def add_app(self, app, title, width, height):

sa = Application(self, title, width, height)
sa.setWidget(app)
self.window[title] = sa
self.window_zindex[title] = len(self.window)-1

return sa

def set_app_zindex(self, title, zi):
w = self.window[title]
self.window_zindex[title] = zi
w.setzIndex(zi)

def lower_app(self, app):
app_zi = self.window_zindex[app.identifier]
for t in self.window_zindex.keys():
w = self.window[t]
zi = self.window_zindex[t]
if zi < app_zi:
self.set_app_zindex(t, zi+1)

self.set_app_zindex(app.identifier, 0)

def raise_app(self, app):
app_zi = self.window_zindex[app.identifier]
for t in self.window_zindex.keys():
w = self.window[t]
zi = self.window_zindex[t]
if zi > app_zi:
self.set_app_zindex(t, zi-1)

app_zi = len(self.window)-1
self.set_app_zindex(app.identifier, app_zi)

def raise_or_lower(self, app):

app_zi = self.window_zindex[app.identifier]
if app_zi != len(self.window)-1:
self.raise_app(app)
else:
self.lower_app(app)

def close_app(self, app):

app_zi = self.window_zindex[app.identifier]
for t in self.window_zindex.keys():
w = self.window[t]
zi = self.window_zindex[t]
if zi > app_zi:
self.set_app_zindex(t, zi-1)

t = self.window[app.identifier]
if not self.remove(t):
Window.alert("%s not in app" % app.identifier)
del self.window[app.identifier]

34 changes: 34 additions & 0 deletions examples/shell/Shell.py
@@ -0,0 +1,34 @@
from pyjamas.ui.RootPanel import RootPanel
from pyjamas.ui.Controls import VerticalDemoSlider
from pyjamas import Window
from textconsole import TextWindow
from Screen import Screen

def slider_app():
b = VerticalDemoSlider(0, 100)
b.setWidth("20px")
b.setHeight("100px")
return b

def text_app():
w = TextWindow(80, 20, 400, 300)
RootPanel().add(w)
w.setText(0, 0, "hello")
w.setText(0, 1, "fred")
w.setText(0, 5, "goodbye")
for i in range(40):
for j in range(2):
w.setText(i, j+10, ".")
return w

if __name__ == '__main__':
s = Screen(Window.getClientWidth(), Window.getClientHeight())
w = text_app()
a = s.add_app(w, "text 1", 400, 300)
a.show()
w = text_app()
a = s.add_app(w, "text 2", 400, 300)
a.show()
w = slider_app()
a = s.add_app(w, "s", 20, 100)
a.show()
1 change: 1 addition & 0 deletions examples/shell/build.sh
@@ -0,0 +1 @@
../../bin/pyjsbuild Shell.py
231 changes: 231 additions & 0 deletions examples/shell/popups.py
@@ -0,0 +1,231 @@
from pyjamas.ui.Button import Button
from pyjamas.ui.VerticalPanel import VerticalPanel
from pyjamas.ui.PopupPanel import PopupPanel
from pyjamas.ui.ListBox import ListBox
from pyjamas.ui.HTML import HTML
from pyjamas.ui.DockPanel import DockPanel
from pyjamas.ui.DialogBox import DialogBox
from pyjamas.ui.Frame import Frame
from pyjamas.ui import HasAlignment
from pyjamas.ui.Composite import Composite
from pyjamas.ui.Panel import Panel
from pyjamas.ui.SimplePanel import SimplePanel
from pyjamas.ui.RootPanel import RootPanel
from pyjamas.ui.FlexTable import FlexTable
from pyjamas.ui import HasHorizontalAlignment
from pyjamas.ui import HasVerticalAlignment
from pyjamas.ui.Image import Image
from pyjamas import Window
from pyjamas import DOM

modal_popups = {}

def ModalPopupActive(title):
global modal_popups
return modal_popups.has_key(title)

def ModalPopupCloseAll():
global modal_popups
while len(modal_popups) > 0:
k = modal_popups.keys()[0]
modal_popups[k].hide()

class DialogBoxModal(PopupPanel):
def __init__(self, identifier, autoHide=None, modal=False, rootpanel=None):
PopupPanel.__init__(self, autoHide, modal, rootpanel)

self.identifier = identifier
self.caption = HTML()
self.child = None
self.showing = False
self.dragging = False
self.dragStartX = 0
self.dragStartY = 0
self.panel = FlexTable()

self.closeButton = Image("images/cancel.png")
self.closeButton.addClickListener(self)
dock = DockPanel()
dock.setSpacing(0)

dock.add(self.closeButton, DockPanel.EAST)
dock.add(self.caption, DockPanel.WEST)

dock.setCellHorizontalAlignment(self.closeButton, HasAlignment.ALIGN_RIGHT)
dock.setCellHorizontalAlignment(self.caption, HasAlignment.ALIGN_LEFT)
dock.setCellWidth(self.caption, "100%")
dock.setWidth("100%")

self.panel.setWidget(0, 0, dock)
self.panel.setHeight("100%")
self.panel.setBorderWidth(0)
self.panel.setCellPadding(0)
self.panel.setCellSpacing(0)
self.panel.getCellFormatter().setHeight(1, 0, "100%")
self.panel.getCellFormatter().setWidth(1, 0, "100%")
#self.panel.getCellFormatter().setAlignment(1, 0, HasHorizontalAlignment.ALIGN_CENTER, HasVerticalAlignment.ALIGN_MIDDLE)
PopupPanel.setWidget(self, self.panel)

self.setStyleName("gwt-DialogBox")
self.caption.setStyleName("Caption")
self.closeButton.setStyleName("Close")
dock.setStyleName("Header")
self.caption.addMouseListener(self)

def getHTML(self):
return self.caption.getHTML()

def getText(self):
return self.caption.getText()

def onMouseDown(self, sender, x, y):
self.dragging = True
DOM.setCapture(self.caption.getElement())
self.dragStartX = x
self.dragStartY = y

def onMouseEnter(self, sender):
pass

def onMouseLeave(self, sender):
pass

def onMouseMove(self, sender, x, y):
if self.dragging:
absX = x + self.getAbsoluteLeft()
absY = y + self.getAbsoluteTop()
self.setPopupPosition(absX - self.dragStartX, absY - self.dragStartY)

def onMouseUp(self, sender, x, y):
self.dragging = False
DOM.releaseCapture(self.caption.getElement())

def remove(self, widget):
if self.child != widget:
return False

self.panel.remove(widget)
self.child = None
return True

def setHTML(self, html):
self.caption.setHTML(html)

def setText(self, text):
self.caption.setText(text)

def doAttachChildren(self):
PopupPanel.doAttachChildren(self)
self.caption.onAttach()

def doDetachChildren(self):
PopupPanel.doDetachChildren(self)
self.caption.onDetach()

def setWidget(self, widget):
if self.child != None:
self.panel.remove(self.child)

if widget != None:
self.panel.setWidget(1, 0, widget)

self.child = widget

def createElement(self):
return DOM.createDiv()

def setPopupPosition(self, left, top):
if left < 0:
left = 0
if top < 0:
top = 0

element = self.getElement()
DOM.setStyleAttribute(element, "left", "%dpx" % left )
DOM.setStyleAttribute(element, "top", "%dpx" % top)

def show(self):
if self.showing:
return

global modal_popups
if modal_popups.has_key(self.identifier) and \
modal_popups[self.identifier] != self:
return
modal_popups[self.identifier] = self

PopupPanel.show(self)

def hide(self, autoClosed=False):
if not self.showing:
return

global modal_popups
if modal_popups.has_key(self.identifier):
del modal_popups[self.identifier]

PopupPanel.hide(self)

def onEventPreview(self, event):
# preventDefault on mousedown events, outside of the
# dialog, to stop text-selection on dragging
type = DOM.eventGetType(event)
if type == 'mousedown':
target = DOM.eventGetTarget(event)
elem = self.caption.getElement()
event_targets_popup = target and DOM.isOrHasChild(elem, target)
if event_targets_popup:
DOM.eventPreventDefault(event)
return PopupPanel.onEventPreview(self, event)

class PopupFrame(DialogBoxModal):

def __init__(self, identifier, title, iframe):

global modal_popups
if modal_popups.has_key(identifier):
return
modal_popups[identifier] = self

DialogBoxModal.__init__(self, identifier)

self.setText(title)

self.iframe = iframe
#closeButton = Button("Close", self)
#msg = HTML("<center>IFRAME:</center>", True)
self.iframe.setStyleName("gwt-DialogFrame")

self.dock = DockPanel()
self.dock.setSpacing(4)

#dock.add(closeButton, DockPanel.SOUTH)
#dock.add(msg, DockPanel.NORTH)
self.dock.add(self.iframe, DockPanel.CENTER)

#dock.setCellHorizontalAlignment(closeButton, HasAlignment.ALIGN_RIGHT)
self.dock.setCellWidth(self.iframe, "100%")
self.dock.setWidth("100%")
#self.iframe.setWidth("320px")
#self.iframe.setHeight("200px")
self.setWidget(self.dock)

def setUrl(self, url):
self.iframe.setUrl(url)

def onClick(self, sender):
self.hide()

def set_width(self, width):

self.iframe.setWidth("%dpx" % width)

def set_height(self, height):
self.iframe.setHeight("%dpx" % height)


class Popup(PopupFrame):

def __init__(self, identifier, title, frame_page=""):
PopupFrame.__init__(self, identifier, title, Frame(frame_page))

12 changes: 12 additions & 0 deletions examples/shell/public/Mail.html
@@ -0,0 +1,12 @@
<html>
<head>
<meta name='pygwt:module' content='Shell'>
<link rel='stylesheet' href='Shell.css'>
<title>Mail App</title>
</head>
<body style='background-color: #EEEEEE'>
<!-- This script is the bootstrap stuff that simply must be there; it is sent down uncompressed -->
<script language='javascript' src='pygwt.js'></script>

</body>
</html>

0 comments on commit d2d2524

Please sign in to comment.