Exemple #1
0
        void OnNoteTextChanged(object sender, EventArgs args)
        {
            NoteWidget nWidget = sender as NoteWidget;

            // if null, add a note, else, modify it
            if (nWidget.Note == null)
            {
                try {
                    INote note = task.CreateNote(nWidget.Text);
                    nWidget.Note = note;
                } catch (Exception e) {
                    Logger.Debug("Unable to create a note");
                    Logger.Debug(e.ToString());
                }
            }
            else
            {
                try {
                    task.SaveNote(nWidget.Note);
                } catch (Exception e) {
                    Logger.Debug("Unable to save note");
                    Logger.Debug(e.ToString());
                }
            }
        }
Exemple #2
0
        public NoteDialog(Gtk.Window parentWindow, Task task)
            : base()
        {
            this.ParentWindow = parentWindow.GdkWindow;
            this.task = task;
            this.Title = String.Format(Catalog.GetString("Notes for: {0:s}"), task.Name);
            this.HasSeparator = false;
            this.SetSizeRequest(500,320);
            this.Icon = Utilities.GetIcon ("tasque-16", 16);
            //this.Flags = Gtk.DialogFlags.DestroyWithParent;

            sw.VscrollbarPolicy = Gtk.PolicyType.Automatic;
            sw.HscrollbarPolicy = Gtk.PolicyType.Never;

            sw.BorderWidth = 0;
            sw.CanFocus = true;
            sw.Show ();

            Gtk.EventBox innerEb = new Gtk.EventBox();
            innerEb.BorderWidth = 0;

            targetVBox = new Gtk.VBox();
            targetVBox.BorderWidth = 5;
            targetVBox.Show ();
            innerEb.Add(targetVBox);
            innerEb.Show ();

            if(task.Notes != null) {
                foreach (TaskNote note in task.Notes) {
                    NoteWidget noteWidget = new NoteWidget (note);
                    noteWidget.TextChanged += OnNoteTextChanged;
                    noteWidget.DeleteButtonClicked += OnDeleteButtonClicked;
                    noteWidget.EditCanceled += OnEditCanceled;
                    noteWidget.Show ();
                    targetVBox.PackStart (noteWidget, false, false, 0);
                }
            }

            sw.AddWithViewport(innerEb);
            sw.Show ();

            VBox.PackStart (sw, true, true, 0);

            if(task.NoteSupport == TaskNoteSupport.Multiple) {
                addButton = new Gtk.Button(Gtk.Stock.Add);
                addButton.Show();
                this.ActionArea.PackStart(addButton);
                addButton.Clicked += OnAddButtonClicked;
            }

            AddButton (Gtk.Stock.Close, Gtk.ResponseType.Close);

            Response += delegate (object sender, Gtk.ResponseArgs args) {
                // Hide the window.  The TaskWindow watches for when the
                // dialog is hidden and will take care of the rest.
                Hide ();
            };
        }
Exemple #3
0
        void OnEditCanceled(object sender, EventArgs args)
        {
            NoteWidget nWidget = sender as NoteWidget;

            // remove the note widget if it's empty
            if (nWidget.Text == String.Empty)
            {
                targetVBox.Remove(nWidget);
            }
        }
Exemple #4
0
        void OnDeleteButtonClicked(object sender, EventArgs args)
        {
            NoteWidget nWidget = sender as NoteWidget;

            try {
                task.DeleteNote(nWidget.Note);
                targetVBox.Remove(nWidget);
            } catch (Exception e) {
                Logger.Debug("Unable to delete the note");
                Logger.Debug(e.ToString());
            }
        }
Exemple #5
0
        public void CreateNewNote()
        {
            Logger.Debug("Creating a new note");
            NoteWidget noteWidget = new NoteWidget(null);

            noteWidget.TextChanged         += OnNoteTextChanged;
            noteWidget.DeleteButtonClicked += OnDeleteButtonClicked;
            noteWidget.EditCanceled        += OnEditCanceled;
            targetVBox.PackStart(noteWidget, false, false, 0);
            noteWidget.FocusTextArea();
            noteWidget.SaveButton.Sensitive = false;
            noteWidget.Show();
        }
Exemple #6
0
        public NoteDialog(Gtk.Window parentWindow, ITask task)
            : base()
        {
            this.ParentWindow = parentWindow.GdkWindow;
            this.task         = task;
            this.Title        = String.Format(Catalog.GetString("Notes for: {0:s}"), task.Name);
            this.HasSeparator = false;
            this.SetSizeRequest(500, 320);
            this.Icon = Utilities.GetIcon("tasque-16", 16);
            //this.Flags = Gtk.DialogFlags.DestroyWithParent;


            sw.VscrollbarPolicy = Gtk.PolicyType.Automatic;
            sw.HscrollbarPolicy = Gtk.PolicyType.Never;

            sw.BorderWidth = 0;
            sw.CanFocus    = true;
            sw.Show();

            Gtk.EventBox innerEb = new Gtk.EventBox();
            innerEb.BorderWidth = 0;


            targetVBox             = new Gtk.VBox();
            targetVBox.BorderWidth = 5;
            targetVBox.Show();
            innerEb.Add(targetVBox);
            innerEb.Show();

            if (task.Notes != null)
            {
                foreach (INote note in task.Notes)
                {
                    NoteWidget noteWidget = new NoteWidget(note);
                    noteWidget.TextChanged         += OnNoteTextChanged;
                    noteWidget.DeleteButtonClicked += OnDeleteButtonClicked;
                    noteWidget.EditCanceled        += OnEditCanceled;
                    noteWidget.Show();
                    targetVBox.PackStart(noteWidget, false, false, 0);
                }
            }

            sw.AddWithViewport(innerEb);
            sw.Show();

            VBox.PackStart(sw, true, true, 0);

            if (task.SupportsMultipleNotes)
            {
                addButton = new Gtk.Button(Gtk.Stock.Add);
                addButton.Show();
                this.ActionArea.PackStart(addButton);
                addButton.Clicked += OnAddButtonClicked;
            }

            AddButton(Gtk.Stock.Close, Gtk.ResponseType.Close);

            Response += delegate(object sender, Gtk.ResponseArgs args) {
                // Hide the window.  The TaskWindow watches for when the
                // dialog is hidden and will take care of the rest.
                Hide();
            };
        }
Exemple #7
0
 public void CreateNewNote()
 {
     Debug.WriteLine("Creating a new note");
     NoteWidget noteWidget = new NoteWidget (null);
     noteWidget.TextChanged += OnNoteTextChanged;
     noteWidget.DeleteButtonClicked += OnDeleteButtonClicked;
     noteWidget.EditCanceled += OnEditCanceled;
     targetVBox.PackStart (noteWidget, false, false, 0);
     noteWidget.FocusTextArea ();
     noteWidget.SaveButton.Sensitive = false;
     noteWidget.Show ();
 }