summaryrefslogtreecommitdiff
path: root/dist/cdk/examples/fselect_ex.c
blob: 76fcd4a410d2722c6e68baeb788f5eb915251d39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#include <cdk.h>

#ifdef HAVE_XCURSES
char *XCursesProgramName="fselect_ex";
#endif

void
doView (CDKSCREEN *cdkscreen, char *filename)
{
   CDKVIEWER *example	= 0;
   char *info[MAX_LINES];
   char *button[5], vTitle[256], *mesg[4], temp[256];
   int selected, lines;

   /* Create the viewer buttons. */
   button[0]	= "</5><OK><!5>";
   button[1]	= "</5><Cancel><!5>";

   /* Create the file viewer to view the file selected.*/
   example = newCDKViewer (cdkscreen, CENTER, CENTER, -2, -2,
				button, 2, A_REVERSE, TRUE, TRUE);

   /* Could we create the viewer widget? */
   if (example == 0)
   {
      endCDK();
      printf ("Oops. Can't seem to create viewer. Is the window too small?\n");
      exit (1);
   }

   /* Open the file and read the contents. */
   lines = readFile (filename, info, MAX_LINES);
   if (lines == -1)
   {
      endCDK();
      printf ("Could not open %s\n", filename);
      exit (1);
   }

   /* Set up the viewer title, and the contents to the widget. */
   sprintf (vTitle, "<C></B/21>Filename:<!21></22>%20s<!22!B>", filename);
   setCDKViewer (example, vTitle, info, lines, A_REVERSE, TRUE, TRUE, TRUE);

   /* Clean up. */
   freeCharList (info, lines);

   /* Activate the viewer widget. */
   selected = activateCDKViewer (example, 0);

   /* Check how the person exited from the widget.*/
   if (example->exitType == vESCAPE_HIT)
   {
      mesg[0] = "<C>Escape hit. No Button selected.";
      mesg[1] = "";
      mesg[2] = "<C>Press any key to continue.";
      popupLabel (cdkscreen, mesg, 3);
   }
   else if (example->exitType == vNORMAL)
   {
      sprintf (temp, "<C>You selected button %d", selected);
      mesg[0] = copyChar (temp);
      mesg[1] = "";
      mesg[2] = "<C>Press any key to continue.";
      popupLabel (cdkscreen, mesg, 3);
   }

   /* Clean up. */
   destroyCDKViewer (example);
}

/*
 * This program demonstrates the file selector and the viewer widget.
 */
int main (int argc, char **argv)
{
   /* Declare variables. */
   CDKSCREEN *cdkscreen = 0;
   CDKFSELECT *fSelect	= 0;
   WINDOW *cursesWin	= 0;
   char *title		= "<C>Pick a file.";
   char *label		= "File: ";
   char *directory	= ".";
   char *filename, *mesg[4];
   int ret;

   /* Parse up the command line. */
   filename = 0;
   while (1)
   {
      ret = getopt (argc, argv, "d:f:");
      if (ret == -1)
      {
	 break;
      }
      switch (ret)
      {
	 case 'd' :
	      directory = strdup (optarg);
	      break;

	 case 'f' :
	      filename = strdup (optarg);
	      break;
      }
   }

   /* Set up CDK. */
   cursesWin = initscr();
   cdkscreen = initCDKScreen (cursesWin);

   /* Start color. */
   initCDKColor();

   if (filename == 0)
   {
      /* Get the filename. */
      fSelect = newCDKFselect (cdkscreen, CENTER, CENTER, 20, 65,
				title, label, A_NORMAL, '_', A_REVERSE,
				"</5>", "</48>", "</N>", "</N>", TRUE, TRUE);

      /*
       * Set the starting directory. This is not neccessary because when
       * the file selector starts it uses the present directory as a default.
       */
      setCDKFselect (fSelect, directory, A_NORMAL, '.', A_REVERSE,
			"</5>", "</48>", "</N>", "</N>", ObjOf(fSelect)->box);

      for (;;)
      {
	 /* Activate the file selector. */
	 filename = activateCDKFselect (fSelect, 0);

	 /* Check how the person exited from the widget. */
	 if (fSelect->exitType == vESCAPE_HIT)
	 {
	    /* Pop up a message for the user. */
	    mesg[0] = "<C>Escape hit. No file selected.";
	    mesg[1] = "";
	    mesg[2] = "<C>Press any key to continue.";
	    popupLabel (cdkscreen, mesg, 3);

	    /* Exit CDK. */
	    destroyCDKFselect (fSelect);
	    break;
	 }

	 doView (cdkscreen, filename);
	 touchwin (fSelect->entryField->win);
	 touchwin (fSelect->scrollField->win);
      }
   }
   else
   {
      doView (cdkscreen, filename);
   }

   /* Clean up. */
   destroyCDKScreen (cdkscreen);
   endCDK();
   exit (0);
}