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
|
//menu.h, (C) 2006, 2007 R.Lackner
//
// This file is part of RLPlot.
//
// RLPlot is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// RLPlot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with RLPlot; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// menu declarations
//
#define CM_OPEN 500
#define CM_SAVEDATAAS 501
#define CM_EXIT 502
#define CM_NEWGRAPH 503
#define CM_NEWPAGE 504
#define CM_DELGRAPH 505
#define CM_ADDPLOT 506
#define CM_ABOUT 507
#define CM_ADDROWCOL 508
#define CM_COPYGRAPH 509
#define CM_SAVEGRAPHAS 510
#define CM_REDRAW 511
#define CM_ZOOM25 512
#define CM_ZOOM50 513
#define CM_ZOOM100 514
#define CM_ZOOM200 515
#define CM_ZOOM400 516
#define CM_PRINT 517
#define CM_EXPORT 518
#define CM_DELOBJ 519
#define CM_DEFAULTS 522
#define CM_COPY 523
#define CM_PASTE 524
#define CM_UPDATE 525
#define CM_ADDAXIS 526
#define CM_UNDO 527
#define CM_ZOOMIN 528
#define CM_ZOOMOUT 529
#define CM_ZOOMFIT 530
#define CM_FILE1 531
#define CM_FILE2 532
#define CM_FILE3 533
#define CM_FILE4 534
#define CM_FILE5 535
#define CM_FILE6 536
#define CM_FILLRANGE 537
#define CM_CUT 538
#define CM_LEGEND 539
#define CM_LAYERS 540
#define CM_INSROW 541
#define CM_INSCOL 542
#define CM_DELROW 543
#define CM_DELCOL 544
#define CM_SAVEDATA 545
#define CM_T_STANDARD 550
#define CM_T_DRAW 551
#define CM_T_POLYLINE 552
#define CM_T_POLYGON 553
#define CM_T_RECTANGLE 554
#define CM_T_ROUNDREC 555
#define CM_T_ELLIPSE 556
#define CM_T_ARROW 557
#define CM_T_TEXT 558
#define CM_DELKEY 600
#define CM_LEFTARRKEY 601
#define CM_RIGHTARRKEY 602
#define CM_UPARRKEY 603
#define CM_DOWNARRKEY 604
#define CM_TAB 605
#define CM_SHTAB 606
#define CM_PGUP 607
#define CM_PGDOWN 608
#define CM_POS_FIRST 609
#define CM_POS_LAST 610
#define CM_SHLEFT 611
#define CM_SHRIGHT 612
#define CM_SHUP 613
#define CM_SHDOWN 614
#define CM_SHPGUP 615
#define CM_SHPGDOWN 616
#define CM_SMPLSTAT 650
#define CM_REPCMEANS 651
#define CM_REPANOV 652
#define CM_REPTWANOV 653
#define CM_REPFRIEDM 654
#define CM_REPTWANR 655
#define CM_REPKRUSKAL 656
#define CM_REPREGR 657
#define CM_ROBUSTLINE 658
#define CM_CORRELM 659
#define CM_CORRELT 660
#define CM_REPTWOWAY 661
|