~artmello/gallery-app/gallery-app-fix_crash_adding_files

« back to all changes in this revision

Viewing changes to src/qml/qml-event-marker.h

  • Committer: Jim Nelson
  • Date: 2012-01-20 22:12:49 UTC
  • Revision ID: jim@yorba.org-20120120221249-81cc1q2jzdkej57k
Event and EventCollection introduced, represented in QML by
QmlEventCollectionModel.  This is work toward completing bug #915655,
the Event Timeline view.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
class QmlEventMarker : public DataSource {
32
32
  Q_OBJECT
33
33
  Q_PROPERTY(QDate date READ date NOTIFY date_changed)
34
 
  Q_PROPERTY(QString prettyDate READ pretty_date NOTIFY date_changed)
35
34
  Q_PROPERTY(QDateTime dateTime READ date_time NOTIFY date_changed)
36
35
  
37
36
 signals:
44
43
  static void RegisterType();
45
44
  
46
45
  QDate date() const;
47
 
  QString pretty_date() const;
48
46
  QDateTime date_time() const;
49
47
  
50
48
 protected: