3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
10 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12 * Copyright (c) 2001-2004, The GROMACS development team,
13 * check out http://www.gromacs.org for more information.
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * If you want to redistribute modifications, please consider that
21 * scientific software is very special. Version control is crucial -
22 * bugs must be traceable. We will be happy to consider code for
23 * inclusion in the official distribution, but derived work must not
24 * be called official GROMACS. Details are found in the README & COPYING
25 * files - if they are missing, get the official version at www.gromacs.org.
27 * To help us fund GROMACS development, we humbly ask that you cite
28 * the papers on the package - you can find them in the top README file.
30 * For more info, check our website at http://www.gromacs.org
33 * Gyas ROwers Mature At Cryogenic Speed
45 #include "gmx_fatal.h"
59 /* Forward declarations: I Don't want all that init shit here */
60 void init_gmx(t_x11
*x11
,char *program
,int nfile
,t_filenm fnm
[],
61 const output_env_t oenv
);
63 int EventSignaller(t_manager
*man
);
65 static void dump_xw(char *dispname
,Window w
,char *fn
)
70 sprintf(comm
,"xwd -id %d -display %s > %s",(int)w
,dispname
,fn
);
73 printf("Warning-- No calls to system(3) supported on this platform.");
74 printf("Warning-- Skipping execution of 'system(\"%s\")'.", buf
);
80 static void dump_it(t_manager
*man
)
84 ps
=ps_open("ngmx.ps",0,0,man
->molw
->wd
.width
,man
->molw
->wd
.height
);
89 static void done_gmx(t_x11
*x11
,t_gmx
*gmx
)
91 done_logo(x11
,gmx
->logo
);
93 done_man(x11
,gmx
->man
);
95 x11
->UnRegisterCallback(x11
,gmx
->wd
->self
);
98 static void move_gmx(t_x11
*x11
,t_gmx
*gmx
,int width
,int height
,
103 fprintf(stderr
,"Move gmx %dx%d\n",width
,height
);
105 y0
=XTextHeight(x11
->font
);
108 XResizeWindow(x11
->disp
,gmx
->pd
->wd
.self
,width
,y0
);
110 XMoveWindow(x11
->disp
,gmx
->man
->wd
.self
,0,y0
+1);
111 XResizeWindow(x11
->disp
,gmx
->man
->wd
.self
,width
,height
-y0
-1);
113 wl
=gmx
->logo
->wd
.width
;
114 hl
=gmx
->logo
->wd
.height
;
115 XMoveWindow(x11
->disp
,gmx
->logo
->wd
.self
,(width
-wl
)/2,(height
-y0
-hl
)/2);
118 static bool HandleClient(t_x11
*x11
,int ID
,t_gmx
*gmx
)
127 write_gmx(x11
,gmx
,IDDODUMP
);
130 if (gmx
->man
->bAnimate
)
131 hide_but(x11
,gmx
->man
->vbox
);
133 if (gmx
->man
->bAnimate
)
134 show_but(x11
,gmx
->man
->vbox
);
139 ShowDlg(gmx
->dlgs
[edExport
]);
142 write_sto_conf(gmx
->confout
,*gmx
->man
->top
.name
,
143 &(gmx
->man
->top
.atoms
),
144 gmx
->man
->x
,NULL
,gmx
->man
->molw
->ePBC
,gmx
->man
->box
);
155 edit_file("topol.gmx");
158 edit_file("confin.gmx");
161 edit_file("mdparin.gmx");
167 ShowDlg(gmx
->dlgs
[edFilter
]);
170 do_filter(x11
,gmx
->man
,gmx
->filter
);
173 check_pd_item(pd
,IDANIMATE
,toggle_animate(x11
,gmx
->man
));
176 no_labels(x11
,gmx
->man
);
179 reset_view(gmx
->man
->view
);
180 ExposeWin(x11
->disp
,gmx
->man
->molw
->wd
.self
);
183 show_mb(gmx
,emNotImplemented
);
186 ShowDlg(gmx
->dlgs
[edBonds
]);
189 set_bond_type(x11
,gmx
->man
->molw
,eBThin
);
192 set_bond_type(x11
,gmx
->man
->molw
,eBFat
);
195 set_bond_type(x11
,gmx
->man
->molw
,eBVeryFat
);
198 set_bond_type(x11
,gmx
->man
->molw
,eBSpheres
);
201 set_box_type(x11
,gmx
->man
->molw
,esbNone
);
204 set_box_type(x11
,gmx
->man
->molw
,esbRect
);
207 set_box_type(x11
,gmx
->man
->molw
,esbTri
);
210 set_box_type(x11
,gmx
->man
->molw
,esbTrunc
);
221 show_mb(gmx
,emNotImplemented
);
229 show_logo(x11
,gmx
->logo
);
238 static bool MainCallBack(t_x11
*x11
,XEvent
*event
, Window w
, void *data
)
241 int nsel
,width
,height
;
246 switch(event
->type
) {
248 hide_pd(x11
,gmx
->pd
);
250 case ConfigureNotify
:
251 width
=event
->xconfigure
.width
;
252 height
=event
->xconfigure
.height
;
253 if ((width
!=gmx
->wd
->width
) || (height
!=gmx
->wd
->height
))
254 move_gmx(x11
,gmx
,width
,height
,TRUE
);
257 hide_pd(x11
,gmx
->pd
);
258 nsel
=event
->xclient
.data
.l
[0];
259 result
= HandleClient(x11
,nsel
,gmx
);
267 int main(int argc
, char *argv
[])
269 const char *desc
[] = {
270 "ngmx is the Gromacs trajectory viewer. This program reads a",
271 "trajectory file, a run input file and an index file and plots a",
272 "3D structure of your molecule on your standard X Window",
273 "screen. No need for a high end graphics workstation, it even",
274 "works on Monochrome screens.[PAR]",
275 "The following features have been implemented:",
276 "3D view, rotation, translation and scaling of your molecule(s),",
277 "labels on atoms, animation of trajectories,",
278 "hardcopy in PostScript format, user defined atom-filters",
279 "runs on MIT-X (real X), open windows and motif,",
280 "user friendly menus, option to remove periodicity, option to",
281 "show computational box.[PAR]",
282 "Some of the more common X command line options can be used:[BR]",
283 "-bg, -fg change colors, -font fontname, changes the font."
285 const char *bugs
[] = {
286 "Balls option does not work",
287 "Some times dumps core without a good reason"
293 { efTRX
, "-f", NULL
, ffREAD
},
294 { efTPX
, NULL
, NULL
, ffREAD
},
295 { efNDX
, NULL
, NULL
, ffOPTRD
}
297 #define NFILE asize(fnm)
299 CopyRight(stdout
,argv
[0]);
300 parse_common_args(&argc
,argv
,PCA_CAN_TIME
,NFILE
,fnm
,
301 0,NULL
,asize(desc
),desc
,asize(bugs
),bugs
,&oenv
);
303 if ((x11
=GetX11(&argc
,argv
))==NULL
) {
304 fprintf(stderr
,"Can't connect to X Server.\n"
305 "Check your DISPLAY environment variable\n");
308 init_gmx(x11
,argv
[0],NFILE
,fnm
,oenv
);
318 static t_mentry FileMenu
[] = {
319 { 0, IDEXPORT
, FALSE
, "Export..." },
320 { 0, IDDUMPWIN
, FALSE
, "Print" },
321 { 0, IDQUIT
, FALSE
, "Quit" }
324 static t_mentry DispMenu
[] = {
325 { 0, IDFILTER
, FALSE
, "Filter..." },
326 { 0, IDANIMATE
, FALSE
, "Animate" },
327 { 0, IDLABELSOFF
, FALSE
, "Labels Off"},
328 { 0, IDRESETVIEW
, FALSE
, "Reset View"},
329 { 0, IDBONDOPTS
, FALSE
, "Options..."}
332 static t_mentry HelpMenu
[] = {
333 { 0, IDHELP
, FALSE
, "Help" },
334 { 0, IDABOUT
, FALSE
, "About Gromacs..." }
337 static t_mentry
*gmx_pd
[] = { FileMenu
, DispMenu
, HelpMenu
};
339 #define MSIZE asize(gmx_pd)
341 static int gmx_pd_size
[MSIZE
] = {
342 asize(FileMenu
), asize(DispMenu
), asize(HelpMenu
)
345 static const char *MenuTitle
[MSIZE
] = {
346 "File", "Display", "Help"
349 void init_gmx(t_x11
*x11
,char *program
,int nfile
,t_filenm fnm
[],
350 const output_env_t oenv
)
356 int natom
,nre
,natom_trx
;
367 ePBC
= read_tpx_top(ftp2fn(efTPX
,nfile
,fnm
),
368 NULL
,box
,&natom
,NULL
,NULL
,NULL
,&top
);
370 read_first_frame(oenv
,&status
,ftp2fn(efTRX
,nfile
,fnm
),&fr
,TRX_DONT_SKIP
);
372 natom_trx
= fr
.natoms
;
374 /* Creates a simple window */
375 w0
=DisplayWidth(x11
->disp
,x11
->screen
)-132;
376 h0
=DisplayHeight(x11
->disp
,x11
->screen
)-140;
378 InitWin(gmx
->wd
,0,0,w0
,h0
,3,quote
);
379 gmx
->wd
->self
=XCreateSimpleWindow(x11
->disp
,x11
->root
,
380 gmx
->wd
->x
, gmx
->wd
->y
,
381 gmx
->wd
->width
,gmx
->wd
->height
,
382 gmx
->wd
->bwidth
,WHITE
,BLACK
);
383 pm
=XCreatePixmapFromBitmapData(x11
->disp
,x11
->root
,
384 (char *)gromacs_bits
,gromacs_width
,
387 hints
.flags
=PMinSize
;
388 hints
.min_width
=2*EWIDTH
+40;
389 hints
.min_height
=EHEIGHT
+LDHEIGHT
+LEGHEIGHT
+40;
390 XSetStandardProperties(x11
->disp
,gmx
->wd
->self
,gmx
->wd
->text
,program
,
393 x11
->RegisterCallback(x11
,gmx
->wd
->self
,x11
->root
,MainCallBack
,gmx
);
394 x11
->SetInputMask(x11
,gmx
->wd
->self
,
395 ButtonPressMask
| ButtonReleaseMask
|
396 OwnerGrabButtonMask
| ExposureMask
|
397 StructureNotifyMask
);
399 /* The order of creating windows is important here! */
401 gmx
->man
= init_man(x11
,gmx
->wd
->self
,0,0,1,1,WHITE
,BLACK
,ePBC
,box
,oenv
);
402 gmx
->logo
= init_logo(x11
,gmx
->wd
->self
);
404 /* Now put all windows in the proper place */
405 move_gmx(x11
,gmx
,w0
,h0
,FALSE
);
407 XMapWindow(x11
->disp
,gmx
->wd
->self
);
408 map_man(x11
,gmx
->man
);
411 gmx
->pd
=init_pd(x11
,gmx
->wd
->self
,gmx
->wd
->width
,
412 XTextHeight(x11
->font
),x11
->fg
,x11
->bg
,
413 MSIZE
,gmx_pd_size
,gmx_pd
,MenuTitle
);
415 /* Dialogs & Filters */
417 gmx
->filter
=init_filter(&(top
.atoms
),ftp2fn_null(efNDX
,nfile
,fnm
),
422 /* Now do file shit */
423 set_file(x11
,gmx
->man
,ftp2fn(efTRX
,nfile
,fnm
),ftp2fn(efTPX
,nfile
,fnm
));
425 /*show_logo(x11,gmx->logo);*/
427 ShowDlg(gmx
->dlgs
[edFilter
]);