@@ -49,16 +49,24 @@ internal string getEventType()
49
49
return ( string ) eventTypeInput . Items [ eventTypeInput . SelectedIndex ] ;
50
50
}
51
51
52
- internal static List < string > getPossibleLocations ( )
52
+ internal List < string > getPossibleLocations ( )
53
53
{
54
- //TODO Return the list of possible locations
55
- return new List < string > ( ) ;
54
+ List < String > possibleLocations = new List < String > ( ) ;
55
+ foreach ( int index in locationsInput . CheckedIndices )
56
+ {
57
+ possibleLocations . Add ( ( String ) ( locationsInput . Items [ index ] ) ) ;
58
+ }
59
+ return possibleLocations ;
56
60
}
57
61
58
- internal static List < string > getRequiredParty ( )
59
- {
60
- //TODO Return the list of required party members
61
- return new List < string > ( ) ;
62
+ internal List < string > getRequiredParty ( )
63
+ {
64
+ List < String > reqPartyMem = new List < String > ( ) ;
65
+ foreach ( int index in reqPaMemInput . CheckedIndices )
66
+ {
67
+ reqPartyMem . Add ( ( String ) ( reqPaMemInput . Items [ index ] ) ) ;
68
+ }
69
+ return reqPartyMem ;
62
70
}
63
71
64
72
internal string getIntroText ( )
@@ -652,6 +660,16 @@ private void frmMain_Load(object sender, EventArgs e)
652
660
responseOptions . Add ( 0 , new ResponseOption ( textResponse1 . Text ) ) ;
653
661
}
654
662
663
+ private void tabGeneralInfo_Click ( object sender , EventArgs e )
664
+ {
665
+
666
+ }
667
+
668
+ private void locationsInput_SelectedIndexChanged ( object sender , EventArgs e )
669
+ {
670
+
671
+ }
672
+
655
673
/* ------------------------------------------------ */
656
674
// ------------------------------------------------ //
657
675
/* ------------------------------------------------ */
0 commit comments