Esempio n. 1
0
        private void metroTile6_Click(object sender, EventArgs e)
        {
            //to-do
            WriteStuff ein = new WriteStuff();

            ein.LabelText = this.todo_tile.Text;
            // start of handling and showing the perv stuff in the file
            FileStream   todo      = new FileStream(settings.conf_directory + @"\todo.txt", FileMode.OpenOrCreate, FileAccess.Read);
            StreamReader powertodo = new StreamReader(todo);
            string       ninja;

            while (true)
            {
                ninja = powertodo.ReadLine();
                if (ninja == null)
                {
                    break;
                }
                CheckBox ch = new CheckBox();
                Point    p  = new Point(0, 60 * ein.posTodo);
                ch.Location  = p;
                ch.Size      = new Size(1000, 20);
                ch.Text      = ninja;
                ch.ForeColor = System.Drawing.Color.Gray;
                ein.todoPanel.Controls.Add(ch);
                ein.posTodo++;
            }// end of handling and showing the perv stuff in the file
            powertodo.Close();
            todo.Close();
            ein.Show();
        }
Esempio n. 2
0
        private void metroTile8_Click(object sender, EventArgs e)
        {
            //appoiments    ((4))

            WriteStuff ein = new WriteStuff();

            ein.LabelText     = this.Appoint_tile.Text;
            ein.TodowriteText = "Add a to-do in appoiments..";
            string[] stuffself = { "Family", "Job", "Social", "Study", "Other" };
            ein.gendre.Items.AddRange(stuffself);
            ein.gendre.SelectedIndex = 4;
            // start of handling the file and showing the perv stuff
            FileStream   appoim   = new FileStream(settings.conf_directory + @"\appointments.txt", FileMode.OpenOrCreate, FileAccess.Read);
            StreamReader powerapp = new StreamReader(appoim);
            string       ninja;

            while (true)
            {
                ninja = powerapp.ReadLine();
                if (ninja == null)
                {
                    break;
                }
                Label lb = new Label();
                Point p  = new Point(0, 30 * ein.posApp);
                lb.Location  = p;
                lb.Size      = new Size(1000, 20);
                lb.Text      = ninja;
                lb.ForeColor = System.Drawing.Color.Gray;
                ein.finalto.Controls.Add(lb);
                ein.posApp++;
            }// end of handling and showing the perv stuff in the file
            powerapp.Close();
            appoim.Close();
            ein.todoPanel.Hide();
            ein.allPanel.Show();
            ein.Show();
        }
Esempio n. 3
0
        /*
         #START OF BASMA'S STUFF *DONT EDIT, TOUCH OR DONT EVEN LOOK!*
         */


        private void metroTile1_Click(object sender, EventArgs e)
        {
            // uni.school     ((0))

            WriteStuff ein = new WriteStuff();

            ein.LabelText     = this.uni_tile.Text;
            ein.TodowriteText = "Add a to-do in unvirsity and school..";
            string[] stuffUni = { "Project", "Read", "Task", "Tutorial", "Other" };
            ein.gendre.Items.AddRange(stuffUni);
            ein.gendre.SelectedIndex = 4;
            // start of handling the file and showing the perv stuff
            FileStream   school  = new FileStream(settings.conf_directory + @"\school.txt", FileMode.OpenOrCreate, FileAccess.Read);
            StreamReader powersc = new StreamReader(school);
            string       ninja;

            while (true)
            {
                ninja = powersc.ReadLine();
                if (ninja == null)
                {
                    break;
                }
                Label lb = new Label();
                Point p  = new Point(0, 30 * ein.posSch);
                lb.Location  = p;
                lb.Size      = new Size(1000, 20);
                lb.Text      = ninja;
                lb.ForeColor = System.Drawing.Color.Gray;
                ein.finalto.Controls.Add(lb);
                ein.posSch++;
            }// end of handling and showing the perv stuff in the file
            powersc.Close();
            school.Close();
            ein.todoPanel.Hide();
            ein.Show();
        }
Esempio n. 4
0
        private void metroTile7_Click(object sender, EventArgs e)
        {
            //to watch    ((3))

            WriteStuff ein = new WriteStuff();

            ein.LabelText     = this.towatch_tile.Text;
            ein.TodowriteText = "Add a to-do in to-watch..";
            string[] stuffself = { "Anime", "Cartoon", "Documentary", "Movie", "Series", "Tutorial", "Other" };
            ein.gendre.Items.AddRange(stuffself);
            ein.gendre.SelectedIndex = 6;
            // start of handling the file and showing the perv stuff
            FileStream   towatch = new FileStream(settings.conf_directory + @"\towatch.txt", FileMode.OpenOrCreate, FileAccess.Read);
            StreamReader powerwa = new StreamReader(towatch);
            string       ninja;

            while (true)
            {
                ninja = powerwa.ReadLine();
                if (ninja == null)
                {
                    break;
                }
                Label lb = new Label();
                Point p  = new Point(0, 30 * ein.posWa);
                lb.Location  = p;
                lb.Size      = new Size(1000, 20);
                lb.Text      = ninja;
                lb.ForeColor = System.Drawing.Color.Gray;
                ein.finalto.Controls.Add(lb);
                ein.posWa++;
            }// end of handling and showing the perv stuff in the file
            powerwa.Close();
            towatch.Close();
            ein.todoPanel.Hide();
            ein.Show();
        }
Esempio n. 5
0
        private void metroTile4_Click(object sender, EventArgs e)
        {
            //to read   ((2))

            WriteStuff ein = new WriteStuff();

            ein.LabelText     = this.toread_tile.Text;
            ein.TodowriteText = "Add a to-do in to-read..";
            string[] stuffself = { "Article", "Blog", "Comic", "Magazine", "Manga", "Novel", "Scientfic", "Other" };
            ein.gendre.Items.AddRange(stuffself);
            ein.gendre.SelectedIndex = 7;
            // start of handling the file and showing the perv stuff
            FileStream   toread   = new FileStream(settings.conf_directory + @"\toread.txt", FileMode.OpenOrCreate, FileAccess.Read);
            StreamReader powertre = new StreamReader(toread);
            string       ninja;

            while (true)
            {
                ninja = powertre.ReadLine();
                if (ninja == null)
                {
                    break;
                }
                Label lb = new Label();
                Point p  = new Point(0, 30 * ein.posRe);
                lb.Location  = p;
                lb.Size      = new Size(1000, 20);
                lb.Text      = ninja;
                lb.ForeColor = System.Drawing.Color.Gray;
                ein.finalto.Controls.Add(lb);
                ein.posRe++;
            }// end of handling and showing the perv stuff in the file
            powertre.Close();
            toread.Close();
            ein.todoPanel.Hide();
            ein.Show();
        }