Skip to content

Commit

Permalink
Merge commit '6cf789ac307c9c83511e5f904206c7b228f21f72'
Browse files Browse the repository at this point in the history
  • Loading branch information
IIUJ-KrzysztofDawidowicz committed Jun 9, 2013
2 parents e09908d + 6cf789a commit 72dbdb3
Show file tree
Hide file tree
Showing 17 changed files with 968 additions and 336 deletions.
Binary file modified nowaWersja/MuseSort/MuseSort.suo
Binary file not shown.
Binary file added nowaWersja/MuseSort/MuseSort.v11.suo
Binary file not shown.
Binary file modified nowaWersja/MuseSort/MuseSort/BazaDanych/MyDatabase#1.sdf
Binary file not shown.
24 changes: 23 additions & 1 deletion nowaWersja/MuseSort/MuseSort/DodawanieFilmow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,33 @@ public partial class DodawanieFilmow : Form
SqlCeConnection conn;
public String sciezkaFilmu = "";
public int idFilmu;
public DodawanieFilmow(String sciezkaPliku="")
public DodawanieFilmow()
{
InitializeComponent();
zapisz.Show();
updateButton.Dispose();
}
public DodawanieFilmow(String sciezkaPliku)
{
InitializeComponent();
zapisz.Show();
updateButton.Dispose();
Film x = new Film(sciezkaPliku);
String title = "";
String gat = "";
String dir = "";
String op = "";
title = x.dane.tytul;
gat = x.dane.gatunki;
dir = x.dane.rezyser;
op = x.dane.opis;
tytul.Text = title;
gatunek.Text = gat;
produkcja.Text = "";
rok.Text = "";
rezyseria.Text = dir;
opis.Text = op;
tytul_ory.Text = "";
sciezkaFilmu = sciezkaPliku;
}
public DodawanieFilmow(int id, String tyt, String gat, String pro, int rokPremiery, String rez, String opisFilmu,
Expand Down
10 changes: 1 addition & 9 deletions nowaWersja/MuseSort/MuseSort/EdycjaPliku.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public EdycjaPliku(String path)

wypelnijPola(dane);
rozszerzenieBox.Enabled = false;
zapiszButton.Enabled = false;
zapiszButton.Enabled = true;
przwrocButton.Enabled = false;
zapisane = true;
}
Expand All @@ -47,7 +47,6 @@ private void zapiszClick(object sender, EventArgs e)
dane.dane.gatunek = gatunekBox.Text.Split(new string[] { ", ","," }, StringSplitOptions.None);

dane.zapiszTagi();
zapiszButton.Enabled = false;
zapisane = true;
}

Expand All @@ -72,7 +71,6 @@ private void przywrocClick(object sender, EventArgs e)
{
daneWejsciowe.zapiszTagi();
wypelnijPola(daneWejsciowe);
zapiszButton.Enabled = false;
przwrocButton.Enabled = false;
zapisane = true;
}
Expand Down Expand Up @@ -104,42 +102,36 @@ private void wypelnijPola(Utwor dane)
//Wykrywanie zmian w poalch tekstowych
private void tytulTextChanged(object sender, EventArgs e)
{
zapiszButton.Enabled = true;
przwrocButton.Enabled = true;
zapisane = false;
}

private void wykonawcaTextChanged(object sender, EventArgs e)
{
zapiszButton.Enabled = true;
przwrocButton.Enabled = true;
zapisane = false;
}

private void albumTextChanged(object sender, EventArgs e)
{
zapiszButton.Enabled = true;
przwrocButton.Enabled = true;
zapisane = false;
}

private void rokTextChanged(object sender, EventArgs e)
{
zapiszButton.Enabled = true;
przwrocButton.Enabled = true;
zapisane = false;
}

private void gatunekTextChanged(object sender, EventArgs e)
{
zapiszButton.Enabled = true;
przwrocButton.Enabled = true;
zapisane = false;
}

private void numerTextChanged(object sender, EventArgs e)
{
zapiszButton.Enabled = true;
przwrocButton.Enabled = true;
zapisane = false;
}
Expand Down
270 changes: 270 additions & 0 deletions nowaWersja/MuseSort/MuseSort/EdycjaPlikuFilmowego.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 72dbdb3

Please sign in to comment.