Exemplo n.º 1
0
        private void checkAllToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int maxlevel = 0;

            syncprop_status = SyncPropertiesStatus.MultipleUndef;

            if (treeFolders.SelectedNode != null)
            {
                foreach (TreeNode tn in treeFolders.SelectedNodes)
                {
                    CheckAllChildren(tn, true, 0, ref maxlevel);
                }
            }

            syncprop_status = SyncPropertiesStatus.Default;
        }
Exemplo n.º 2
0
        private void uncheckAllToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int maxlevel = 0;

            syncprop_status = SyncPropertiesStatus.MultipleUndef;

            if (treeFolders.SelectedNode != null)
            {
                if (MessageBox.Show("Are you sure you want to uncheck all children folders?", "Confirmation", MessageBoxButtons.OKCancel) == DialogResult.OK)
                {
                    foreach (TreeNode tn in treeFolders.SelectedNodes)
                    {
                        CheckAllChildren(tn, false, 0, ref maxlevel);
                    }
                }
            }

            syncprop_status = SyncPropertiesStatus.Default;
        }
Exemplo n.º 3
0
        private void checkAllToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int maxlevel = 0;

            syncprop_status = SyncPropertiesStatus.MultipleUndef;

            if (treeFolders.SelectedNode != null)
                foreach(TreeNode tn in treeFolders.SelectedNodes)
                    CheckAllChildren(tn, true, 0, ref maxlevel);

            syncprop_status = SyncPropertiesStatus.Default;
        }
Exemplo n.º 4
0
        private void uncheckAllToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int maxlevel = 0;

            syncprop_status = SyncPropertiesStatus.MultipleUndef;

            if (treeFolders.SelectedNode != null)
                if (MessageBox.Show("Are you sure you want to uncheck all children folders?","Confirmation",MessageBoxButtons.OKCancel)==DialogResult.OK)
                    foreach (TreeNode tn in treeFolders.SelectedNodes)
                        CheckAllChildren(tn, false, 0, ref maxlevel);

            syncprop_status = SyncPropertiesStatus.Default;
        }
Exemplo n.º 5
0
        private void treeFolders_AfterCheck(object sender, TreeViewEventArgs e)
        {
            Cursor = Cursors.WaitCursor;

            if (e.Node.Checked)
            {
                if (syncprop_status == SyncPropertiesStatus.CancelAll)
                {
                    e.Node.Checked = false;

                    treeFolders.RefreshTreeNodes(treeFolders.Nodes);
                    CalcTooltips();
                    Cursor = Cursors.Default;
                    return;
                }

                SyncFolder sf = new SyncFolder(e.Node.Name);

                //try to match Set name
                foreach (Photoset ps in FlickrSync.ri.GetAllSets())
                {
                    if (ps.Title.Equals(Path.GetFileName(e.Node.Name),StringComparison.CurrentCultureIgnoreCase))
                    {
                        sf.SetId = ps.PhotosetId;
                        break;
                    }
                }
                if (sf.SetId == "")
                    sf.SetTitle = Path.GetFileName(e.Node.Name);

                if (syncprop_status == SyncPropertiesStatus.OKAll)
                {
                    li.Add(sf);
                }
                else
                {
                    SyncFolderForm sff = new SyncFolderForm(sf);
                    if (syncprop_status == SyncPropertiesStatus.MultipleUndef)
                        sff.SetMultiple(true);

                    DialogResult dr=sff.ShowDialog();

                    if (dr == DialogResult.OK || dr==DialogResult.Yes)  //Yes means OK to All
                        li.Add(sf);
                    else
                        e.Node.Checked = false;

                    if (dr == DialogResult.Yes && syncprop_status == SyncPropertiesStatus.MultipleUndef)
                        syncprop_status = SyncPropertiesStatus.OKAll;

                    if (dr == DialogResult.Abort) //CancelAll
                    {
                        syncprop_status = SyncPropertiesStatus.CancelAll;

                        treeFolders.RefreshTreeNodes(treeFolders.Nodes);
                        CalcTooltips();
                        Cursor = Cursors.Default;
                        return;
                    }
                }
            }
            else
                li.Remove(e.Node.Name);

            treeFolders.RefreshTreeNodes(treeFolders.Nodes);
            CalcTooltips();
            Cursor = Cursors.Default;
        }
Exemplo n.º 6
0
        private void treeFolders_AfterCheck(object sender, TreeViewEventArgs e)
        {
            Cursor = Cursors.WaitCursor;

            if (e.Node.Checked)
            {
                if (syncprop_status == SyncPropertiesStatus.CancelAll)
                {
                    e.Node.Checked = false;

                    treeFolders.RefreshTreeNodes(treeFolders.Nodes);
                    CalcTooltips();
                    Cursor = Cursors.Default;
                    return;
                }

                SyncFolder sf       = new SyncFolder(e.Node.Name);
                string     basename = Path.GetFileName(e.Node.Name);

                switch (sf.SetNaming)
                {
                case SyncFolder.SetNamings.NamingDefault:
                    //try to match Set name
                    foreach (Photoset ps in FlickrSync.ri.GetAllSets())
                    {
                        if (ps.Title.Equals(basename, StringComparison.CurrentCultureIgnoreCase))
                        {
                            sf.SetId = ps.PhotosetId;
                            break;
                        }
                    }
                    if (sf.SetId == "")
                    {
                        sf.SetTitle = basename;
                    }
                    break;

                case SyncFolder.SetNamings.NonUniqueSetNames:
                    sf.SetTitle = basename;
                    break;

                case SyncFolder.SetNamings.UniqueSetNames:
                    sf.SetTitle = basename;
                    string re = basename + "(?: \\((\\d+)\\))?$";
                    System.Text.RegularExpressions.Match match;
                    int title_index = 0;
                    int val;
                    foreach (Photoset ps in FlickrSync.ri.GetAllSets())
                    {
                        // match for an existing photoset title with an options " (NNN)" suffix.
                        match = System.Text.RegularExpressions.Regex.Match(ps.Title, re, System.Text.RegularExpressions.RegexOptions.IgnoreCase);
                        // no match, keep trying
                        if (!match.Success)
                        {
                            continue;
                        }
                        // matched, but without the suffix
                        if (match.Captures.Count == 1)
                        {
                            // create our own suffix with " (1)" unless we already encountered something higher
                            title_index = Math.Max(title_index, 1);
                            continue;
                        }
                        // matched with suffix, set tltle_index to be 1 more than the matched suffix or the current title_index,
                        // whichever is higher
                        title_index = Math.Max(title_index, Int32.Parse(match.Groups[0].Value));
                    }
                    // if title_index is 0, it means we haven't encountered an existing title that matches this one
                    if (title_index > 0)
                    {
                        sf.SetTitle += System.String.Format(" ({0})", title_index);
                    }
                    break;
                }

                if (syncprop_status == SyncPropertiesStatus.OKAll)
                {
                    li.Add(sf);
                }
                else
                {
                    SyncFolderForm sff = new SyncFolderForm(sf);
                    if (syncprop_status == SyncPropertiesStatus.MultipleUndef)
                    {
                        sff.SetMultiple(true);
                    }

                    DialogResult dr = sff.ShowDialog();

                    if (dr == DialogResult.OK || dr == DialogResult.Yes)  //Yes means OK to All
                    {
                        li.Add(sf);
                    }
                    else
                    {
                        e.Node.Checked = false;
                    }

                    if (dr == DialogResult.Yes && syncprop_status == SyncPropertiesStatus.MultipleUndef)
                    {
                        syncprop_status = SyncPropertiesStatus.OKAll;
                    }

                    if (dr == DialogResult.Abort) //CancelAll
                    {
                        syncprop_status = SyncPropertiesStatus.CancelAll;

                        treeFolders.RefreshTreeNodes(treeFolders.Nodes);
                        CalcTooltips();
                        Cursor = Cursors.Default;
                        return;
                    }
                }
            }
            else
            {
                li.Remove(e.Node.Name);
            }

            treeFolders.RefreshTreeNodes(treeFolders.Nodes);
            CalcTooltips();
            Cursor = Cursors.Default;
        }
Exemplo n.º 7
0
        private void treeFolders_AfterCheck(object sender, TreeViewEventArgs e)
        {
            Cursor = Cursors.WaitCursor;

            if (e.Node.Checked)
            {
                if (syncprop_status == SyncPropertiesStatus.CancelAll)
                {
                    e.Node.Checked = false;

                    treeFolders.RefreshTreeNodes(treeFolders.Nodes);
                    CalcTooltips();
                    Cursor = Cursors.Default;
                    return;
                }

                SyncFolder sf = new SyncFolder(e.Node.Name);

                //try to match Set name
                foreach (Photoset ps in FlickrSync.ri.GetAllSets())
                {
                    if (ps.Title.Equals(Path.GetFileName(e.Node.Name), StringComparison.CurrentCultureIgnoreCase))
                    {
                        sf.SetId = ps.PhotosetId;
                        break;
                    }
                }
                if (sf.SetId == "")
                {
                    sf.SetTitle = Path.GetFileName(e.Node.Name);
                }

                if (syncprop_status == SyncPropertiesStatus.OKAll)
                {
                    li.Add(sf);
                }
                else
                {
                    SyncFolderForm sff = new SyncFolderForm(sf);
                    if (syncprop_status == SyncPropertiesStatus.MultipleUndef)
                    {
                        sff.SetMultiple(true);
                    }

                    DialogResult dr = sff.ShowDialog();

                    if (dr == DialogResult.OK || dr == DialogResult.Yes)  //Yes means OK to All
                    {
                        li.Add(sf);
                    }
                    else
                    {
                        e.Node.Checked = false;
                    }

                    if (dr == DialogResult.Yes && syncprop_status == SyncPropertiesStatus.MultipleUndef)
                    {
                        syncprop_status = SyncPropertiesStatus.OKAll;
                    }

                    if (dr == DialogResult.Abort) //CancelAll
                    {
                        syncprop_status = SyncPropertiesStatus.CancelAll;

                        treeFolders.RefreshTreeNodes(treeFolders.Nodes);
                        CalcTooltips();
                        Cursor = Cursors.Default;
                        return;
                    }
                }
            }
            else
            {
                li.Remove(e.Node.Name);
            }

            treeFolders.RefreshTreeNodes(treeFolders.Nodes);
            CalcTooltips();
            Cursor = Cursors.Default;
        }