2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
45 #include "gromacs/commandline/pargs.h"
46 #include "gromacs/fileio/confio.h"
47 #include "gromacs/fileio/oenv.h"
48 #include "gromacs/fileio/tpxio.h"
49 #include "gromacs/trajectory/trajectoryframe.h"
50 #include "gromacs/utility/arraysize.h"
51 #include "gromacs/utility/coolstuff.h"
52 #include "gromacs/utility/fatalerror.h"
53 #include "gromacs/utility/smalloc.h"
57 #include "gromacs/fileio/writeps.h"
66 static void dump_it(t_manager
*man
)
70 ps
= ps_open("view.ps", 0, 0, man
->molw
->wd
.width
, man
->molw
->wd
.height
);
75 static void done_gmx(t_x11
*x11
, t_gmx
*gmx
)
77 done_logo(x11
, gmx
->logo
);
78 done_pd(x11
, gmx
->pd
);
79 done_man(x11
, gmx
->man
);
81 x11
->UnRegisterCallback(x11
, gmx
->wd
->self
);
84 static void move_gmx(t_x11
*x11
, t_gmx
*gmx
, int width
, int height
,
89 std::fprintf(stderr
, "Move gmx %dx%d\n", width
, height
);
91 y0
= XTextHeight(x11
->font
);
95 XResizeWindow(x11
->disp
, gmx
->pd
->wd
.self
, width
, y0
);
98 XMoveWindow(x11
->disp
, gmx
->man
->wd
.self
, 0, y0
+1);
99 XResizeWindow(x11
->disp
, gmx
->man
->wd
.self
, width
, height
-y0
-1);
101 wl
= gmx
->logo
->wd
.width
;
102 hl
= gmx
->logo
->wd
.height
;
103 XMoveWindow(x11
->disp
, gmx
->logo
->wd
.self
, (width
-wl
)/2, (height
-y0
-hl
)/2);
106 static bool HandleClient(t_x11
*x11
, int ID
, t_gmx
*gmx
)
116 write_gmx(x11
, gmx
, IDDODUMP
);
119 if (gmx
->man
->bAnimate
)
121 hide_but(x11
, gmx
->man
->vbox
);
124 if (gmx
->man
->bAnimate
)
126 show_but(x11
, gmx
->man
->vbox
);
132 ShowDlg(gmx
->dlgs
[edExport
]);
135 write_sto_conf(gmx
->confout
, *gmx
->man
->top
.name
,
136 &(gmx
->man
->top
.atoms
),
137 gmx
->man
->x
, NULL
, gmx
->man
->molw
->ePBC
, gmx
->man
->box
);
140 show_mb(gmx
, emQuit
);
148 edit_file("topol.gmx");
151 edit_file("confin.gmx");
154 edit_file("mdparin.gmx");
161 ShowDlg(gmx
->dlgs
[edFilter
]);
165 do_filter(x11
, gmx
->man
, gmx
->filter
);
168 check_pd_item(pd
, IDANIMATE
, toggle_animate(x11
, gmx
->man
));
171 no_labels(x11
, gmx
->man
);
174 reset_view(gmx
->man
->view
);
175 ExposeWin(x11
->disp
, gmx
->man
->molw
->wd
.self
);
178 show_mb(gmx
, emNotImplemented
);
181 ShowDlg(gmx
->dlgs
[edBonds
]);
184 set_bond_type(x11
, gmx
->man
->molw
, eBThin
);
187 set_bond_type(x11
, gmx
->man
->molw
, eBFat
);
190 set_bond_type(x11
, gmx
->man
->molw
, eBVeryFat
);
193 set_bond_type(x11
, gmx
->man
->molw
, eBSpheres
);
196 set_box_type(x11
, gmx
->man
->molw
, esbNone
);
199 set_box_type(x11
, gmx
->man
->molw
, esbRect
);
202 set_box_type(x11
, gmx
->man
->molw
, esbTri
);
205 set_box_type(x11
, gmx
->man
->molw
, esbTrunc
);
216 show_mb(gmx
, emNotImplemented
);
221 show_mb(gmx
, emHelp
);
224 show_logo(x11
, gmx
->logo
);
233 static bool MainCallBack(t_x11
*x11
, XEvent
*event
, Window
/*w*/, void *data
)
236 int nsel
, width
, height
;
244 hide_pd(x11
, gmx
->pd
);
246 case ConfigureNotify
:
247 width
= event
->xconfigure
.width
;
248 height
= event
->xconfigure
.height
;
249 if ((width
!= gmx
->wd
->width
) || (height
!= gmx
->wd
->height
))
251 move_gmx(x11
, gmx
, width
, height
, true);
255 hide_pd(x11
, gmx
->pd
);
256 nsel
= event
->xclient
.data
.l
[0];
257 result
= HandleClient(x11
, nsel
, gmx
);
265 static t_mentry FileMenu
[] = {
266 { 0, IDEXPORT
, false, "Export..." },
267 { 0, IDDUMPWIN
, false, "Print" },
268 { 0, IDQUIT
, false, "Quit" }
271 static t_mentry DispMenu
[] = {
272 { 0, IDFILTER
, false, "Filter..." },
273 { 0, IDANIMATE
, false, "Animate" },
274 { 0, IDLABELSOFF
, false, "Labels Off"},
275 { 0, IDRESETVIEW
, false, "Reset View"},
276 { 0, IDBONDOPTS
, false, "Options..."}
279 static t_mentry HelpMenu
[] = {
280 { 0, IDHELP
, false, "Help" },
281 { 0, IDABOUT
, false, "About GROMACS..." }
284 static t_mentry
*gmx_pd
[] = { FileMenu
, DispMenu
, HelpMenu
};
286 #define MSIZE asize(gmx_pd)
288 static int gmx_pd_size
[MSIZE
] = {
289 asize(FileMenu
), asize(DispMenu
), asize(HelpMenu
)
292 static const char *MenuTitle
[MSIZE
] = {
293 "File", "Display", "Help"
296 static void init_gmx(t_x11
*x11
, char *program
, int nfile
, t_filenm fnm
[],
297 gmx_output_env_t
*oenv
)
303 int natom
, natom_trx
;
313 ePBC
= read_tpx_top(ftp2fn(efTPR
, nfile
, fnm
),
314 NULL
, box
, &natom
, NULL
, NULL
, &top
);
316 read_first_frame(oenv
, &status
, ftp2fn(efTRX
, nfile
, fnm
), &fr
, TRX_DONT_SKIP
);
318 natom_trx
= fr
.natoms
;
320 /* Creates a simple window */
321 w0
= DisplayWidth(x11
->disp
, x11
->screen
)-132;
322 h0
= DisplayHeight(x11
->disp
, x11
->screen
)-140;
323 InitWin(gmx
->wd
, 0, 0, w0
, h0
, 3, gmx::bromacs().c_str());
324 gmx
->wd
->self
= XCreateSimpleWindow(x11
->disp
, x11
->root
,
325 gmx
->wd
->x
, gmx
->wd
->y
,
326 gmx
->wd
->width
, gmx
->wd
->height
,
327 gmx
->wd
->bwidth
, WHITE
, BLACK
);
328 pm
= XCreatePixmapFromBitmapData(x11
->disp
, x11
->root
,
329 (char *)gromacs_bits
, gromacs_width
,
332 hints
.flags
= PMinSize
;
333 hints
.min_width
= 2*EWIDTH
+40;
334 hints
.min_height
= EHEIGHT
+LDHEIGHT
+LEGHEIGHT
+40;
335 XSetStandardProperties(x11
->disp
, gmx
->wd
->self
, gmx
->wd
->text
, program
,
336 pm
, NULL
, 0, &hints
);
338 x11
->RegisterCallback(x11
, gmx
->wd
->self
, x11
->root
, MainCallBack
, gmx
);
339 x11
->SetInputMask(x11
, gmx
->wd
->self
,
340 ButtonPressMask
| ButtonReleaseMask
|
341 OwnerGrabButtonMask
| ExposureMask
|
342 StructureNotifyMask
);
344 /* The order of creating windows is important here! */
346 gmx
->man
= init_man(x11
, gmx
->wd
->self
, 0, 0, 1, 1, WHITE
, BLACK
, ePBC
, box
, oenv
);
347 gmx
->logo
= init_logo(x11
, gmx
->wd
->self
, false);
349 /* Now put all windows in the proper place */
350 move_gmx(x11
, gmx
, w0
, h0
, false);
352 XMapWindow(x11
->disp
, gmx
->wd
->self
);
353 map_man(x11
, gmx
->man
);
356 gmx
->pd
= init_pd(x11
, gmx
->wd
->self
, gmx
->wd
->width
,
358 MSIZE
, gmx_pd_size
, gmx_pd
, MenuTitle
);
360 /* Dialogs & Filters */
362 gmx
->filter
= init_filter(&(top
.atoms
), ftp2fn_null(efNDX
, nfile
, fnm
),
367 /* Now do file operations */
368 set_file(x11
, gmx
->man
, ftp2fn(efTRX
, nfile
, fnm
), ftp2fn(efTPR
, nfile
, fnm
));
370 ShowDlg(gmx
->dlgs
[edFilter
]);
374 int gmx_view(int argc
, char *argv
[])
376 const char *desc
[] = {
377 "[THISMODULE] is the GROMACS trajectory viewer. This program reads a",
378 "trajectory file, a run input file and an index file and plots a",
379 "3D structure of your molecule on your standard X Window",
380 "screen. No need for a high end graphics workstation, it even",
381 "works on Monochrome screens.[PAR]",
382 "The following features have been implemented:",
383 "3D view, rotation, translation and scaling of your molecule(s),",
384 "labels on atoms, animation of trajectories,",
385 "hardcopy in PostScript format, user defined atom-filters",
386 "runs on MIT-X (real X), open windows and motif,",
387 "user friendly menus, option to remove periodicity, option to",
388 "show computational box.[PAR]",
389 "Some of the more common X command line options can be used: ",
390 "[TT]-bg[tt], [TT]-fg[tt] change colors, [TT]-font fontname[tt] changes the font."
392 const char *bugs
[] = {
393 "Balls option does not work",
394 "Some times dumps core without a good reason"
397 gmx_output_env_t
*oenv
;
399 { efTRX
, "-f", NULL
, ffREAD
},
400 { efTPR
, NULL
, NULL
, ffREAD
},
401 { efNDX
, NULL
, NULL
, ffOPTRD
}
403 #define NFILE asize(fnm)
405 if (parse_common_args(&argc
, argv
, PCA_CAN_TIME
, NFILE
, fnm
,
406 0, NULL
, asize(desc
), desc
, asize(bugs
), bugs
, &oenv
))
409 std::fprintf(stderr
, "Compiled without X-Windows - can not run viewer.\n");
413 if ((x11
= GetX11(&argc
, argv
)) == NULL
)
415 std::fprintf(stderr
, "Can't connect to X Server.\n"
416 "Check your DISPLAY environment variable\n");
420 init_gmx(x11
, argv
[0], NFILE
, fnm
, oenv
);