Minor changes
This commit is contained in:
parent
f02e224d75
commit
8e24a71ea7
5 changed files with 40 additions and 8 deletions
|
@ -6,8 +6,12 @@ class CalState:
|
|||
|
||||
def __init__(self):
|
||||
self.gotoToday()
|
||||
self.selection=(self.year, self.month, self.day)
|
||||
self.firstWeekDay=0
|
||||
|
||||
def setSelection(self, yy, mm, dd):
|
||||
self.selection=(yy,mm,dd)
|
||||
|
||||
def setFirstWeekDay(self, i):
|
||||
self.firstWeekDay=i
|
||||
|
||||
|
|
|
@ -218,7 +218,8 @@ class CalDrawerScene(QGraphicsScene):
|
|||
b=event.button()
|
||||
if self.mouseOver>=0 and b==Qt.MouseButton.LeftButton:
|
||||
event.accept()
|
||||
self.selection=self.calState.getMonthDays()[self.mouseOver]
|
||||
s=self.calState.getMonthDays()[self.mouseOver]
|
||||
self.calState.setSelection(s[0],s[1],s[2])
|
||||
event = QEvent(DaySelectedEvent)
|
||||
QCoreApplication.postEvent(self.parent, event)
|
||||
|
||||
|
|
|
@ -54,6 +54,9 @@
|
|||
<property name="title">
|
||||
<string>File</string>
|
||||
</property>
|
||||
<addaction name="actionImport"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionExit"/>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menuAbout">
|
||||
<property name="title">
|
||||
|
@ -65,6 +68,9 @@
|
|||
<string>Calendars</string>
|
||||
</property>
|
||||
<addaction name="actionCreate"/>
|
||||
<addaction name="actionEdit"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionVisibility"/>
|
||||
</widget>
|
||||
<addaction name="menuFile"/>
|
||||
<addaction name="menuCalendars"/>
|
||||
|
@ -87,6 +93,26 @@
|
|||
<string>Create</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionEdit">
|
||||
<property name="text">
|
||||
<string>Edit</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionVisibility">
|
||||
<property name="text">
|
||||
<string>Visibility</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionImport">
|
||||
<property name="text">
|
||||
<string>Import</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionExit">
|
||||
<property name="text">
|
||||
<string>Exit</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
|
|
|
@ -24,7 +24,7 @@ class EvtDrawerScene(QGraphicsScene):
|
|||
self.env=env
|
||||
self.eventsRect=list()
|
||||
self.eventsList=list()
|
||||
self.setDay(self.env.calState.today())
|
||||
self.calStateChanged()
|
||||
|
||||
def drawForeground(self, painter, rect):
|
||||
self.eventsRect.clear()
|
||||
|
@ -62,8 +62,9 @@ class EvtDrawerScene(QGraphicsScene):
|
|||
r=self.eventsRect[i]
|
||||
painter.drawText(r.x(),r.y()+labelH,"Hello event")
|
||||
|
||||
def setDay(self, day):
|
||||
self.eventsList=self.env.listEventsOn(day[0],day[1],day[2])
|
||||
def calStateChanged(self):
|
||||
s=self.env.calState.selection
|
||||
self.eventsList=self.env.listEventsOn(s[0],s[1],s[2])
|
||||
self.update()
|
||||
|
||||
|
||||
|
@ -87,5 +88,5 @@ class EvtDrawer():
|
|||
# self.gv.setSizePolicy(spLeft);
|
||||
layout.addWidget(self.gv)
|
||||
|
||||
def setDay(self,day):
|
||||
self.gs.setDay(day)
|
||||
def calStateChanged(self):
|
||||
self.gs.calStateChanged()
|
||||
|
|
|
@ -26,7 +26,7 @@ class MainWindow(QMainWindow):
|
|||
|
||||
def event(self, event):
|
||||
if event.type() == DaySelectedEvent:
|
||||
self.evtDrawer.setDay(self.calDrawer.getSelection())
|
||||
self.evtDrawer.calStateChanged()
|
||||
return QWidget.event(self,event) #super().event(event)
|
||||
|
||||
def StartApplication(env):
|
||||
|
|
Loading…
Add table
Reference in a new issue