Changeset 2825 for palm/trunk/SCRIPTS
- Timestamp:
- Feb 20, 2018 9:48:27 PM (7 years ago)
- Location:
- palm/trunk/SCRIPTS
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palm_gf
r2718 r2825 1 #!/usr/bin/ python -B1 #!/usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 3 #--------------------------------------------------------------------------------# … … 25 25 # ----------------- 26 26 # $Id$ 27 # Modified header 28 # 29 # 2718 2018-01-02 08:49:38Z maronga 27 30 # Corrected "Former revisions" section 28 31 # -
palm/trunk/SCRIPTS/palm_jm
r2718 r2825 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 3 #--------------------------------------------------------------------------------# … … 25 25 # ----------------- 26 26 # $Id$ 27 # Modified header 28 # 29 # 2718 2018-01-02 08:49:38Z maronga 27 30 # Corrected "Former revisions" section 28 31 # -
palm/trunk/SCRIPTS/palm_wd
r2718 r2825 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 3 #--------------------------------------------------------------------------------# … … 25 25 # ----------------- 26 26 # $Id$ 27 # Modified header 28 # 29 # 2718 2018-01-02 08:49:38Z maronga 27 30 # Corrected "Former revisions" section 28 31 # -
palm/trunk/SCRIPTS/palm_wdd
r2718 r2825 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 3 #--------------------------------------------------------------------------------# … … 25 25 # ----------------- 26 26 # $Id$ 27 # Modified header 28 # 29 # 2718 2018-01-02 08:49:38Z maronga 27 30 # Corrected "Former revisions" section 28 31 # -
palm/trunk/SCRIPTS/palmrungui
r2718 r2825 1 #!/usr/bin/ python -B1 #!/usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 3 #--------------------------------------------------------------------------------# … … 25 25 # ----------------- 26 26 # $Id$ 27 # Adjusted to work with newest version of palmrun 28 # 29 # 2718 2018-01-02 08:49:38Z maronga 27 30 # Corrected "Former revisions" section 28 31 # … … 375 378 376 379 if ( initialize == True ):#and self.group_runcontrol.isEnabled() == True ): 377 self.group_runcontrol.setEnabled(True)378 380 self.group_execution.setEnabled(True) 379 381 self.group_job.findChild(QtGui.QComboBox,"drop_job").setEnabled(True) … … 383 385 384 386 elif ( param[0] == ""): 385 self.group_runcontrol.setEnabled(False)386 387 self.group_execution.setEnabled(False) 387 388 self.group_job.findChild(QtGui.QComboBox,"drop_job").setEnabled(False) … … 430 431 431 432 432 433 self.group_runcontrol.setEnabled(True)434 433 self.group_execution.setEnabled(True) 435 434 self.drop_job.setEnabled(True) … … 438 437 # Change in parameter "a" (run control list) 439 438 elif (id_str == "a"): 440 status_ts = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_ts").checkState()441 status_pr = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_pr").checkState()442 status_xy = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_xy").checkState()443 status_xz = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_xz").checkState()444 status_yz = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_yz").checkState()445 status_3d = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_3d").checkState()446 status_ma = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_ma").checkState()447 status_sp = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_sp").checkState()448 status_pts = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_pts").checkState()449 status_prt = self.group_runcontrol.findChild(QtGui.QCheckBox,"check_prt").checkState()450 439 451 440 drop_job = self.group_job.findChild(QtGui.QComboBox,"drop_job").currentText() … … 472 461 param[0] = "\"d3%s" % (rc_flag) 473 462 474 if (status_ts == 2):475 param[0] = "%s ts%s" % (param[0],rc_flag)476 477 if (status_pr == 2):478 param[0] = "%s pr%s" % (param[0],rc_flag)479 480 if (status_xy == 2):481 param[0] = "%s xy%s" % (param[0],rc_flag)482 483 if (status_xz == 2):484 param[0] = "%s xz%s" % (param[0],rc_flag)485 486 if (status_yz == 2):487 param[0] = "%s yz%s" % (param[0],rc_flag)488 489 if (status_3d == 2):490 param[0] = "%s 3d%s" % (param[0],rc_flag)491 492 if (status_ma == 2):493 param[0] = "%s ma%s" % (param[0],rc_flag)494 495 if (status_sp == 2):496 param[0] = "%s sp%s" % (param[0],rc_flag)497 498 if (status_prt == 2):499 param[0] = "%s prt%s" % (param[0],rc_flag)500 501 if (status_pts == 2):502 param[0] = "%s pts%s" % (param[0],rc_flag)503 504 463 505 464 if (drop_job == "Restart run (coupled atmosphere ocean)" or drop_job == "Initial run (coupled atmosphere ocean)"): … … 507 466 rc_flag = "o#" 508 467 else: 509 rc_flag = "o f"468 rc_flag = "or" 510 469 511 470 param[0] = "%s d3%s" % (param[0],rc_flag) 512 471 513 if (status_ts == 2):514 param[0] = "%s ts%s" % (param[0],rc_flag)515 516 if (status_pr == 2):517 param[0] = "%s pr%s" % (param[0],rc_flag)518 519 if (status_xy == 2):520 param[0] = "%s xy%s" % (param[0],rc_flag)521 522 if (status_xz == 2):523 param[0] = "%s xz%s" % (param[0],rc_flag)524 525 if (status_yz == 2):526 param[0] = "%s yz%s" % (param[0],rc_flag)527 528 if (status_3d == 2):529 param[0] = "%s 3d%s" % (param[0],rc_flag)530 531 if (status_ma == 2):532 param[0] = "%s ma%s" % (param[0],rc_flag)533 534 if (status_sp == 2):535 param[0] = "%s sp%s" % (param[0],rc_flag)536 537 if (status_prt == 2):538 param[0] = "%s prt%s" % (param[0],rc_flag)539 540 if (status_pts == 2):541 param[0] = "%s pts%s" % (param[0],rc_flag)542 543 472 status_restarts = self.group_execution.findChild(QtGui.QCheckBox,"check_restarts").checkState() 544 473 … … 563 492 564 493 if (status_cycfill == 2): 565 param[0]="%s cycfill" % (param[0]) 494 param[0]="%s fill" % (param[0]) 495 496 status_svf = self.group_execution.findChild(QtGui.QCheckBox,"check_svf").checkState() 497 498 if (status_svf == 2): 499 param[0]="%s svf" % (param[0]) 566 500 567 501 param[0]="%s\"" % (param[0]) 568 502 503 569 504 if ( fwt_str == "remove"): 570 505 self.delete_commandline(id_str) … … 998 933 options_all = optionssplit[j] 999 934 options_2 = optionssplit[j][:2] 1000 1001 if (options_2 == "ts"): 1002 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_ts").setChecked(True) 1003 1004 if (options_2 == "pr" and options_all[:3] is not "prt"): 1005 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_pr").setChecked(True) 1006 1007 if (options_2 == "xy"): 1008 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_xy").setChecked(True) 1009 1010 if (options_2 == "xz"): 1011 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_xz").setChecked(True) 1012 1013 if (options_2 == "yz"): 1014 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_yz").setChecked(True) 1015 1016 if (options_2 == "3d"): 1017 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_3d").setChecked(True) 1018 1019 if (options_2 == "ma"): 1020 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_ma").setChecked(True) 1021 1022 if (options_2 == "sp"): 1023 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_sp").setChecked(True) 1024 1025 if (options_all[:3] == "prt"): 1026 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_prt").setChecked(True) 1027 1028 if (options_all[:3] == "pts"): 1029 self.group_runcontrol.findChild(QtGui.QCheckBox,"check_pts").setChecked(True) 1030 935 1031 936 if (options_2 == "d3"): 1032 937 if (options_all[:3][-1] == "#"): … … 1076 981 if ( nojob == True ): 1077 982 self.group_execution.setEnabled(False) 1078 self.group_runcontrol.setEnabled(False)1079 983 self.groupBox.findChild(QtGui.QPushButton,"button_start").setEnabled(False) 1080 984 self.menuBar.findChild(QtGui.QMenu,"menuStart").actions()[3].setEnabled(False) … … 1085 989 else: 1086 990 self.group_execution.setEnabled(True) 1087 self.group_runcontrol.setEnabled(True)1088 991 self.groupBox.findChild(QtGui.QPushButton,"button_start").setEnabled(True) 1089 992 self.menuBar.findChild(QtGui.QMenu,"menuStart").actions()[3].setEnabled(True) -
palm/trunk/SCRIPTS/palmrungui_files/mainwindow.ui
r2484 r2825 14 14 <y>0</y> 15 15 <width>600</width> 16 <height> 655</height>16 <height>700</height> 17 17 </rect> 18 18 </property> … … 26 26 <size> 27 27 <width>600</width> 28 <height> 655</height>28 <height>700</height> 29 29 </size> 30 30 </property> … … 32 32 <size> 33 33 <width>600</width> 34 <height> 655</height>34 <height>700</height> 35 35 </size> 36 36 </property> … … 67 67 <rect> 68 68 <x>0</x> 69 <y>5 50</y>69 <y>570</y> 70 70 <width>601</width> 71 71 <height>81</height> … … 139 139 <rect> 140 140 <x>10</x> 141 <y> 45</y>141 <y>50</y> 142 142 <width>581</width> 143 143 <height>26</height> … … 167 167 <y>5</y> 168 168 <width>591</width> 169 <height>5 56</height>169 <height>581</height> 170 170 </rect> 171 171 </property> … … 223 223 <x>90</x> 224 224 <y>30</y> 225 <width> 221</width>225 <width>481</width> 226 226 <height>25</height> 227 227 </rect> … … 262 262 <x>10</x> 263 263 <y>85</y> 264 <width> 301</width>264 <width>561</width> 265 265 <height>181</height> 266 266 </rect> … … 273 273 <property name="geometry"> 274 274 <rect> 275 <x> 10</x>275 <x>70</x> 276 276 <y>270</y> 277 <width> 301</width>277 <width>271</width> 278 278 <height>25</height> 279 279 </rect> … … 316 316 <property name="geometry"> 317 317 <rect> 318 <x>3 20</x>318 <x>350</x> 319 319 <y>267</y> 320 <width>2 61</width>320 <width>231</width> 321 321 <height>31</height> 322 322 </rect> … … 332 332 </property> 333 333 </widget> 334 </widget> 335 <widget class="QGroupBox" name="group_runcontrol"> 336 <property name="enabled"> 337 <bool>false</bool> 338 </property> 339 <property name="geometry"> 340 <rect> 341 <x>320</x> 342 <y>0</y> 343 <width>251</width> 344 <height>281</height> 345 </rect> 346 </property> 347 <property name="title"> 348 <string>Activation strings</string> 349 </property> 350 <property name="flat"> 351 <bool>true</bool> 352 </property> 353 <widget class="QCheckBox" name="check_pr"> 354 <property name="geometry"> 355 <rect> 356 <x>10</x> 357 <y>45</y> 358 <width>87</width> 359 <height>23</height> 360 </rect> 361 </property> 362 <property name="text"> 363 <string>Profiles</string> 364 </property> 365 </widget> 366 <widget class="QCheckBox" name="check_3d"> 367 <property name="geometry"> 368 <rect> 369 <x>10</x> 370 <y>145</y> 371 <width>87</width> 372 <height>23</height> 373 </rect> 374 </property> 375 <property name="text"> 376 <string>3D</string> 377 </property> 378 </widget> 379 <widget class="QCheckBox" name="check_xy"> 380 <property name="geometry"> 381 <rect> 382 <x>10</x> 383 <y>70</y> 384 <width>87</width> 385 <height>23</height> 386 </rect> 387 </property> 388 <property name="text"> 389 <string>XY</string> 390 </property> 391 </widget> 392 <widget class="QCheckBox" name="check_ts"> 393 <property name="geometry"> 394 <rect> 395 <x>10</x> 396 <y>20</y> 397 <width>131</width> 398 <height>23</height> 399 </rect> 400 </property> 401 <property name="text"> 402 <string>Timeseries</string> 403 </property> 404 </widget> 405 <widget class="QCheckBox" name="check_ma"> 406 <property name="geometry"> 407 <rect> 408 <x>10</x> 409 <y>170</y> 410 <width>87</width> 411 <height>23</height> 412 </rect> 413 </property> 414 <property name="text"> 415 <string>Masks</string> 416 </property> 417 </widget> 418 <widget class="QCheckBox" name="check_sp"> 419 <property name="geometry"> 420 <rect> 421 <x>10</x> 422 <y>195</y> 423 <width>87</width> 424 <height>23</height> 425 </rect> 426 </property> 427 <property name="text"> 428 <string>Spectra</string> 429 </property> 430 </widget> 431 <widget class="QCheckBox" name="check_prt"> 432 <property name="geometry"> 433 <rect> 434 <x>10</x> 435 <y>220</y> 436 <width>87</width> 437 <height>23</height> 438 </rect> 439 </property> 440 <property name="text"> 441 <string>Particles</string> 442 </property> 443 </widget> 444 <widget class="QCheckBox" name="check_xz"> 445 <property name="geometry"> 446 <rect> 447 <x>10</x> 448 <y>95</y> 449 <width>87</width> 450 <height>23</height> 451 </rect> 452 </property> 453 <property name="text"> 454 <string>XZ</string> 455 </property> 456 </widget> 457 <widget class="QCheckBox" name="check_yz"> 458 <property name="geometry"> 459 <rect> 460 <x>10</x> 461 <y>120</y> 462 <width>87</width> 463 <height>23</height> 464 </rect> 465 </property> 466 <property name="text"> 467 <string>YZ</string> 468 </property> 469 </widget> 470 <widget class="QCheckBox" name="check_pts"> 471 <property name="geometry"> 472 <rect> 473 <x>10</x> 474 <y>240</y> 475 <width>151</width> 476 <height>36</height> 477 </rect> 478 </property> 479 <property name="text"> 480 <string>Particle timeseries</string> 481 </property> 482 </widget> 334 <widget class="QLabel" name="label_8"> 335 <property name="geometry"> 336 <rect> 337 <x>10</x> 338 <y>275</y> 339 <width>81</width> 340 <height>16</height> 341 </rect> 342 </property> 343 <property name="text"> 344 <string>Job type:</string> 345 </property> 346 </widget> 347 <zorder>line_jobname</zorder> 348 <zorder>pushButton</zorder> 349 <zorder>label</zorder> 350 <zorder>list_jobname</zorder> 351 <zorder>drop_job</zorder> 352 <zorder>label_usercode</zorder> 353 <zorder>palm_logo</zorder> 354 <zorder>label_8</zorder> 483 355 </widget> 484 356 <widget class="QGroupBox" name="group_execution"> … … 491 363 <y>305</y> 492 364 <width>431</width> 493 <height>2 06</height>365 <height>231</height> 494 366 </rect> 495 367 </property> … … 711 583 <x>10</x> 712 584 <y>140</y> 713 <width>2 71</width>585 <width>281</width> 714 586 <height>23</height> 715 587 </rect> … … 738 610 <property name="geometry"> 739 611 <rect> 740 <x>1 50</x>612 <x>130</x> 741 613 <y>120</y> 742 <width> 421</width>614 <width>291</width> 743 615 <height>20</height> 744 616 </rect> … … 765 637 <property name="text"> 766 638 <string>Use cyclic fill method</string> 639 </property> 640 </widget> 641 <widget class="QCheckBox" name="check_svf"> 642 <property name="geometry"> 643 <rect> 644 <x>10</x> 645 <y>200</y> 646 <width>261</width> 647 <height>21</height> 648 </rect> 649 </property> 650 <property name="text"> 651 <string>Read sky view factors from file</string> 767 652 </property> 768 653 </widget> … … 1243 1128 <y>0</y> 1244 1129 <width>600</width> 1245 <height> 21</height>1130 <height>30</height> 1246 1131 </rect> 1247 1132 </property> … … 1251 1136 <x>341</x> 1252 1137 <y>82</y> 1253 <width>1 33</width>1254 <height>18 2</height>1138 <width>128</width> 1139 <height>189</height> 1255 1140 </rect> 1256 1141 </property> … … 1370 1255 <tabstop>check_verbose</tabstop> 1371 1256 <tabstop>check_cycfill</tabstop> 1372 <tabstop>check_ts</tabstop>1373 <tabstop>check_pr</tabstop>1374 <tabstop>check_xy</tabstop>1375 <tabstop>check_xz</tabstop>1376 <tabstop>check_yz</tabstop>1377 <tabstop>check_3d</tabstop>1378 <tabstop>check_ma</tabstop>1379 <tabstop>check_sp</tabstop>1380 <tabstop>check_prt</tabstop>1381 <tabstop>check_pts</tabstop>1382 1257 <tabstop>button_start</tabstop> 1383 1258 <tabstop>button_exit</tabstop> … … 1485 1360 </connection> 1486 1361 <connection> 1487 <sender>check_ts</sender>1488 <signal>stateChanged(int)</signal>1489 <receiver>MainWindow</receiver>1490 <slot>change_rc_list()</slot>1491 <hints>1492 <hint type="sourcelabel">1493 <x>544</x>1494 <y>119</y>1495 </hint>1496 <hint type="destinationlabel">1497 <x>506</x>1498 <y>63</y>1499 </hint>1500 </hints>1501 </connection>1502 <connection>1503 <sender>check_pr</sender>1504 <signal>stateChanged(int)</signal>1505 <receiver>MainWindow</receiver>1506 <slot>change_rc_list()</slot>1507 <hints>1508 <hint type="sourcelabel">1509 <x>544</x>1510 <y>144</y>1511 </hint>1512 <hint type="destinationlabel">1513 <x>506</x>1514 <y>90</y>1515 </hint>1516 </hints>1517 </connection>1518 <connection>1519 <sender>check_xy</sender>1520 <signal>stateChanged(int)</signal>1521 <receiver>MainWindow</receiver>1522 <slot>change_rc_list()</slot>1523 <hints>1524 <hint type="sourcelabel">1525 <x>544</x>1526 <y>169</y>1527 </hint>1528 <hint type="destinationlabel">1529 <x>506</x>1530 <y>116</y>1531 </hint>1532 </hints>1533 </connection>1534 <connection>1535 <sender>check_xz</sender>1536 <signal>stateChanged(int)</signal>1537 <receiver>MainWindow</receiver>1538 <slot>change_rc_list()</slot>1539 <hints>1540 <hint type="sourcelabel">1541 <x>544</x>1542 <y>194</y>1543 </hint>1544 <hint type="destinationlabel">1545 <x>505</x>1546 <y>142</y>1547 </hint>1548 </hints>1549 </connection>1550 <connection>1551 <sender>check_yz</sender>1552 <signal>stateChanged(int)</signal>1553 <receiver>MainWindow</receiver>1554 <slot>change_rc_list()</slot>1555 <hints>1556 <hint type="sourcelabel">1557 <x>544</x>1558 <y>219</y>1559 </hint>1560 <hint type="destinationlabel">1561 <x>505</x>1562 <y>167</y>1563 </hint>1564 </hints>1565 </connection>1566 <connection>1567 <sender>check_3d</sender>1568 <signal>stateChanged(int)</signal>1569 <receiver>MainWindow</receiver>1570 <slot>change_rc_list()</slot>1571 <hints>1572 <hint type="sourcelabel">1573 <x>544</x>1574 <y>244</y>1575 </hint>1576 <hint type="destinationlabel">1577 <x>505</x>1578 <y>194</y>1579 </hint>1580 </hints>1581 </connection>1582 <connection>1583 <sender>check_ma</sender>1584 <signal>stateChanged(int)</signal>1585 <receiver>MainWindow</receiver>1586 <slot>change_rc_list()</slot>1587 <hints>1588 <hint type="sourcelabel">1589 <x>544</x>1590 <y>269</y>1591 </hint>1592 <hint type="destinationlabel">1593 <x>505</x>1594 <y>219</y>1595 </hint>1596 </hints>1597 </connection>1598 <connection>1599 <sender>check_prt</sender>1600 <signal>stateChanged(int)</signal>1601 <receiver>MainWindow</receiver>1602 <slot>change_rc_list()</slot>1603 <hints>1604 <hint type="sourcelabel">1605 <x>544</x>1606 <y>319</y>1607 </hint>1608 <hint type="destinationlabel">1609 <x>505</x>1610 <y>247</y>1611 </hint>1612 </hints>1613 </connection>1614 <connection>1615 <sender>check_sp</sender>1616 <signal>stateChanged(int)</signal>1617 <receiver>MainWindow</receiver>1618 <slot>change_rc_list()</slot>1619 <hints>1620 <hint type="sourcelabel">1621 <x>544</x>1622 <y>294</y>1623 </hint>1624 <hint type="destinationlabel">1625 <x>503</x>1626 <y>304</y>1627 </hint>1628 </hints>1629 </connection>1630 <connection>1631 <sender>check_pts</sender>1632 <signal>stateChanged(int)</signal>1633 <receiver>MainWindow</receiver>1634 <slot>change_rc_list()</slot>1635 <hints>1636 <hint type="sourcelabel">1637 <x>544</x>1638 <y>352</y>1639 </hint>1640 <hint type="destinationlabel">1641 <x>505</x>1642 <y>330</y>1643 </hint>1644 </hints>1645 </connection>1646 <connection>1647 1362 <sender>drop_job</sender> 1648 1363 <signal>currentIndexChanged(QString)</signal> … … 1667 1382 <hints> 1668 1383 <hint type="sourcelabel"> 1669 <x>7 2</x>1670 <y>5 36</y>1384 <x>76</x> 1385 <y>527</y> 1671 1386 </hint> 1672 1387 <hint type="destinationlabel"> … … 1683 1398 <hints> 1684 1399 <hint type="sourcelabel"> 1685 <x> 76</x>1686 <y>5 61</y>1400 <x>80</x> 1401 <y>547</y> 1687 1402 </hint> 1688 1403 <hint type="destinationlabel"> … … 1699 1414 <hints> 1700 1415 <hint type="sourcelabel"> 1701 <x> 57</x>1702 <y>5 84</y>1416 <x>61</x> 1417 <y>567</y> 1703 1418 </hint> 1704 1419 <hint type="destinationlabel"> … … 1719 1434 </hint> 1720 1435 <hint type="destinationlabel"> 1721 <x> 954</x>1436 <x>599</x> 1722 1437 <y>67</y> 1723 1438 </hint> … … 1735 1450 </hint> 1736 1451 <hint type="destinationlabel"> 1737 <x> 954</x>1452 <x>599</x> 1738 1453 <y>103</y> 1739 1454 </hint> … … 1751 1466 </hint> 1752 1467 <hint type="destinationlabel"> 1753 <x> 956</x>1468 <x>599</x> 1754 1469 <y>129</y> 1755 1470 </hint> … … 1767 1482 </hint> 1768 1483 <hint type="destinationlabel"> 1769 <x> 957</x>1484 <x>599</x> 1770 1485 <y>158</y> 1771 1486 </hint> … … 1783 1498 </hint> 1784 1499 <hint type="destinationlabel"> 1785 <x> 955</x>1500 <x>599</x> 1786 1501 <y>188</y> 1787 1502 </hint> … … 1796 1511 <hint type="sourcelabel"> 1797 1512 <x>434</x> 1798 <y>28 9</y>1799 </hint> 1800 <hint type="destinationlabel"> 1801 <x> 955</x>1513 <y>282</y> 1514 </hint> 1515 <hint type="destinationlabel"> 1516 <x>599</x> 1802 1517 <y>255</y> 1803 1518 </hint> … … 1811 1526 <hints> 1812 1527 <hint type="sourcelabel"> 1813 <x>12 3</x>1814 <y>4 21</y>1528 <x>127</x> 1529 <y>434</y> 1815 1530 </hint> 1816 1531 <hint type="destinationlabel"> … … 1827 1542 <hints> 1828 1543 <hint type="sourcelabel"> 1829 <x> 99</x>1830 <y>4 72</y>1544 <x>124</x> 1545 <y>459</y> 1831 1546 </hint> 1832 1547 <hint type="destinationlabel"> … … 1843 1558 <hints> 1844 1559 <hint type="sourcelabel"> 1845 <x>18 3</x>1846 <y>4 96</y>1560 <x>187</x> 1561 <y>484</y> 1847 1562 </hint> 1848 1563 <hint type="destinationlabel"> … … 1859 1574 <hints> 1860 1575 <hint type="sourcelabel"> 1861 <x>34 2</x>1862 <y>4 22</y>1576 <x>346</x> 1577 <y>435</y> 1863 1578 </hint> 1864 1579 <hint type="destinationlabel"> … … 1875 1590 <hints> 1876 1591 <hint type="sourcelabel"> 1877 <x>36 5</x>1878 <y>4 46</y>1592 <x>369</x> 1593 <y>484</y> 1879 1594 </hint> 1880 1595 <hint type="destinationlabel"> … … 1891 1606 <hints> 1892 1607 <hint type="sourcelabel"> 1893 <x>3 34</x>1894 <y>4 72</y>1608 <x>344</x> 1609 <y>460</y> 1895 1610 </hint> 1896 1611 <hint type="destinationlabel"> … … 1907 1622 <hints> 1908 1623 <hint type="sourcelabel"> 1909 <x> 644</x>1910 <y> 102</y>1911 </hint> 1912 <hint type="destinationlabel"> 1913 <x> 954</x>1624 <x>304</x> 1625 <y>330</y> 1626 </hint> 1627 <hint type="destinationlabel"> 1628 <x>599</x> 1914 1629 <y>328</y> 1915 1630 </hint> … … 1923 1638 <hints> 1924 1639 <hint type="sourcelabel"> 1925 <x> 754</x>1926 <y> 192</y>1927 </hint> 1928 <hint type="destinationlabel"> 1929 <x> 955</x>1640 <x>414</x> 1641 <y>380</y> 1642 </hint> 1643 <hint type="destinationlabel"> 1644 <x>599</x> 1930 1645 <y>396</y> 1931 1646 </hint> … … 1939 1654 <hints> 1940 1655 <hint type="sourcelabel"> 1941 <x> 754</x>1942 <y> 282</y>1943 </hint> 1944 <hint type="destinationlabel"> 1945 <x> 955</x>1656 <x>414</x> 1657 <y>405</y> 1658 </hint> 1659 <hint type="destinationlabel"> 1660 <x>599</x> 1946 1661 <y>522</y> 1947 1662 </hint> … … 1955 1670 <hints> 1956 1671 <hint type="sourcelabel"> 1957 <x> 754</x>1958 <y> 371</y>1959 </hint> 1960 <hint type="destinationlabel"> 1961 <x> 956</x>1672 <x>414</x> 1673 <y>446</y> 1674 </hint> 1675 <hint type="destinationlabel"> 1676 <x>599</x> 1962 1677 <y>612</y> 1963 1678 </hint> … … 1971 1686 <hints> 1972 1687 <hint type="sourcelabel"> 1973 <x> 754</x>1974 <y>4 16</y>1975 </hint> 1976 <hint type="destinationlabel"> 1977 <x> 955</x>1688 <x>414</x> 1689 <y>479</y> 1690 </hint> 1691 <hint type="destinationlabel"> 1692 <x>599</x> 1978 1693 <y>650</y> 1979 1694 </hint> … … 1987 1702 <hints> 1988 1703 <hint type="sourcelabel"> 1989 <x> 307</x>1990 <y>65 2</y>1991 </hint> 1992 <hint type="destinationlabel"> 1993 <x> 956</x>1704 <x>299</x> 1705 <y>654</y> 1706 </hint> 1707 <hint type="destinationlabel"> 1708 <x>599</x> 1994 1709 <y>689</y> 1995 1710 </hint> … … 2003 1718 <hints> 2004 1719 <hint type="sourcelabel"> 2005 <x> 754</x>2006 <y> 132</y>2007 </hint> 2008 <hint type="destinationlabel"> 2009 <x> 953</x>1720 <x>414</x> 1721 <y>355</y> 1722 </hint> 1723 <hint type="destinationlabel"> 1724 <x>599</x> 2010 1725 <y>287</y> 2011 1726 </hint> … … 2148 1863 <hint type="sourcelabel"> 2149 1864 <x>434</x> 2150 <y>3 14</y>1865 <y>307</y> 2151 1866 </hint> 2152 1867 <hint type="destinationlabel"> … … 2164 1879 <hint type="sourcelabel"> 2165 1880 <x>274</x> 2166 <y> 602</y>1881 <y>585</y> 2167 1882 </hint> 2168 1883 <hint type="destinationlabel"> … … 2201 1916 <x>458</x> 2202 1917 <y>344</y> 1918 </hint> 1919 </hints> 1920 </connection> 1921 <connection> 1922 <sender>check_svf</sender> 1923 <signal>stateChanged(int)</signal> 1924 <receiver>MainWindow</receiver> 1925 <slot>change_rc_list()</slot> 1926 <hints> 1927 <hint type="sourcelabel"> 1928 <x>172</x> 1929 <y>593</y> 1930 </hint> 1931 <hint type="destinationlabel"> 1932 <x>596</x> 1933 <y>494</y> 2203 1934 </hint> 2204 1935 </hints>
Note: See TracChangeset
for help on using the changeset viewer.