File: identifier-index-R.html

package info (click to toggle)
gnumed-client 1.7.5%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 236,656 kB
  • sloc: python: 117,577; sh: 1,118; xml: 35; makefile: 33
file content (874 lines) | stat: -rw-r--r-- 84,617 bytes parent folder | download
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Identifier Index</title>
  <link rel="stylesheet" href="epydoc.css" type="text/css" />
  <script type="text/javascript" src="epydoc.js"></script>
</head>

<body bgcolor="white" text="black" link="blue" vlink="#204080"
      alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th bgcolor="#70b0f0" class="navbar-select"
          >&nbsp;&nbsp;&nbsp;Indices&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
          </tr></table></th>
  </tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
  <tr valign="top">
    <td width="100%">&nbsp;</td>
    <td>
      <table cellpadding="0" cellspacing="0">
        <!-- hide/show private -->
        <tr><td align="right"><span class="options"
            >[<a href="frames.html" target="_top">frames</a
            >]&nbsp;|&nbsp;<a href="identifier-index-R.html"
            target="_top">no&nbsp;frames</a>]</span></td></tr>
      </table>
    </td>
  </tr>
</table>
<table border="0" width="100%">
<tr valign="bottom"><td>
<h1 class="epydoc">Identifier Index</h1>
</td><td>
[
 <a href="identifier-index-A.html">A</a>
 <a href="identifier-index-B.html">B</a>
 <a href="identifier-index-C.html">C</a>
 <a href="identifier-index-D.html">D</a>
 <a href="identifier-index-E.html">E</a>
 <a href="identifier-index-F.html">F</a>
 <a href="identifier-index-G.html">G</a>
 <a href="identifier-index-H.html">H</a>
 <a href="identifier-index-I.html">I</a>
 <a href="identifier-index-J.html">J</a>
 <a href="identifier-index-K.html">K</a>
 <a href="identifier-index-L.html">L</a>
 <a href="identifier-index-M.html">M</a>
 <a href="identifier-index-N.html">N</a>
 <a href="identifier-index-O.html">O</a>
 <a href="identifier-index-P.html">P</a>
 <a href="identifier-index-Q.html">Q</a>
 <a href="identifier-index-R.html">R</a>
 <a href="identifier-index-S.html">S</a>
 <a href="identifier-index-T.html">T</a>
 <a href="identifier-index-U.html">U</a>
 <a href="identifier-index-V.html">V</a>
 <a href="identifier-index-W.html">W</a>
 <a href="identifier-index-X.html">X</a>
 <a href="identifier-index-Y.html">Y</a>
 <a href="identifier-index-Z.html">Z</a>
 <a href="identifier-index-_.html">_</a>
]
</td></table>
<table border="0" width="100%">
<tr valign="top"><td valign="top" width="1%"><h2 class="epydoc"><a name="R">R</a></h2></td>
<td valign="top">
<table class="link-index" width="100%" border="1">
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin.cNotebookPlugin-class.html#Raise">Raise()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin.cNotebookPlugin-class.html">cNotebookPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmKOrganizerPlugin.gmKOrganizerPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmKOrganizerPlugin.gmKOrganizerPlugin-class.html">gmKOrganizerPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigEditorPanel-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigEditorPanel-class.html">gmConfigEditorPanel</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html#Raise">Raise()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html">BasePlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin.gmMeasurementsGridPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin.gmMeasurementsGridPlugin-class.html">gmMeasurementsGridPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer.cXdtListPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmXdtViewer.cXdtListPnl-class.html">cXdtListPnl</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.wxPatientPlugin-class.html#Raise">Raise()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin_Patient.wxPatientPlugin-class.html">wxPatientPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMeasurementsPlugin.gmMeasurementsPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmMeasurementsPlugin.gmMeasurementsPlugin-class.html">gmMeasurementsPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html#report_ADR">report_ADR()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html">cCurrentSubstancesGrid</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html#raise_gnumed">raise_gnumed()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html">cMacroPrimitives</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin.gmNotebookedPatientEditionPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin.gmNotebookedPatientEditionPlugin-class.html">gmNotebookedPatientEditionPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDataMining-module.html#report_exists">report_exists()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmDataMining-module.html">Gnumed.business.gmDataMining</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPraxis.gmCurrentPraxisBranch-class.html#raise_in_waiting_list">raise_in_waiting_list()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPraxis.gmCurrentPraxisBranch-class.html">gmCurrentPraxisBranch</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin.gmNotebookedProgressNoteInputPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin.gmNotebookedProgressNoteInputPlugin-class.html">gmNotebookedProgressNoteInputPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.repositories-module.html">repositories</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib-module.html">Gnumed.timelinelib</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html#raise_notebook_plugin">raise_notebook_plugin()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMacro.cMacroPrimitives-class.html">cMacroPrimitives</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmPACSPlugin.gmPACSPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmPACSPlugin.gmPACSPlugin-class.html">gmPACSPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#request_login_params">request_login_params()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAutoHintWidgets.cDynamicHintDlg-class.html#rationale">rationale</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmAutoHintWidgets.cDynamicHintDlg-class.html">cDynamicHintDlg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin.gmPatientOverviewPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin.gmPatientOverviewPlugin-class.html">gmPatientOverviewPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests-module.html#requestdata">requestdata</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_Requests-module.html">Gnumed.wxpython.patient.gmGP_Requests</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.config.dotfile.Config-class.html#read">read()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.config.dotfile.Config-class.html">Config</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmProviderInboxPlugin.gmProviderInboxPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmProviderInboxPlugin.gmProviderInboxPlugin-class.html">gmProviderInboxPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests-module.html#requestprompts">requestprompts</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_Requests-module.html">Gnumed.wxpython.patient.gmGP_Requests</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.general.config.Config-class.html#read">read()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.general.config.Config-class.html">Config</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin.gmScanIdxMedDocsPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin.gmScanIdxMedDocsPlugin-class.html">gmScanIdxMedDocsPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmRequest.RequestsPanel-class.html">RequestsPanel</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmRequest-module.html">Gnumed.wxpython.gui.gmRequest</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.test.cases.tmpdir.TmpDirTestCase-class.html#read">read()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.test.cases.tmpdir.TmpDirTestCase-class.html">TmpDirTestCase</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmShowMedDocs.gmShowMedDocs-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmShowMedDocs.gmShowMedDocs-class.html">gmShowMedDocs</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Requests.RequestsPanel-class.html">RequestsPanel</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_Requests-module.html">Gnumed.wxpython.patient.gmGP_Requests</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.config.dotfile-module.html#read_config">read_config()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.config.dotfile-module.html">Gnumed.timelinelib.config.dotfile</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin.gmSimpleSoapPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin.gmSimpleSoapPlugin-class.html">gmSimpleSoapPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmBillingPlugin.gmBillingPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmBillingPlugin.gmBillingPlugin-class.html">gmBillingPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.general.xmlparser.Tag-class.html#read_enough_times">read_enough_times()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.general.xmlparser.Tag-class.html">Tag</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSoapPlugin.gmSoapPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmSoapPlugin.gmSoapPlugin-class.html">gmSoapPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin.gmCurrentSubstancesPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin.gmCurrentSubstancesPlugin-class.html">gmCurrentSubstancesPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.db-module.html#read_first_line">read_first_line()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.db-module.html">Gnumed.timelinelib.db</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmWaitingListPlugin.gmWaitingListPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmWaitingListPlugin.gmWaitingListPlugin-class.html">gmWaitingListPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin.gmEMRBrowserPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin.gmEMRBrowserPlugin-class.html">gmEMRBrowserPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.components.statusbaradapter.StatusBarAdapter-class.html#READ_ONLY_COLUMN">READ_ONLY_COLUMN</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.components.statusbaradapter.StatusBarAdapter-class.html">StatusBarAdapter</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewer-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewer-class.html">gmXdtViewer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRJournalPlugin.gmEMRJournalPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRJournalPlugin.gmEMRJournalPlugin-class.html">gmEMRJournalPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmXdtObjects-module.html#read_person_from_xdt">read_person_from_xdt()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmXdtObjects-module.html">Gnumed.business.gmXdtObjects</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary.gmGP_ClinicalSummary-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_ClinicalSummary.gmGP_ClinicalSummary-class.html">gmGP_ClinicalSummary</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRListJournalPlugin.gmEMRListJournalPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRListJournalPlugin.gmEMRListJournalPlugin-class.html">gmEMRListJournalPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmCA_MSVA-module.html#read_persons_from_msva_file">read_persons_from_msva_file()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmCA_MSVA-module.html">Gnumed.business.gmCA_MSVA</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls.gmGP_ScratchPadRecalls-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls.gmGP_ScratchPadRecalls-class.html">gmGP_ScratchPadRecalls</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRTimelinePlugin.gmEMRTimelinePlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRTimelinePlugin.gmEMRTimelinePlugin-class.html">gmEMRTimelinePlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPracSoftAU-module.html#read_persons_from_pracsoft_file">read_persons_from_pracsoft_file()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPracSoftAU-module.html">Gnumed.business.gmPracSoftAU</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_TabbedLists.gmGP_TabbedLists-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_TabbedLists.gmGP_TabbedLists-class.html">gmGP_TabbedLists</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmExportAreaPlugin.gmExportAreaPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmExportAreaPlugin.gmExportAreaPlugin-class.html">gmExportAreaPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocumentPart-class.html#reattach">reattach()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmDocuments.cDocumentPart-class.html">cDocumentPart</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.gmCurrentPatient-class.html#register_before_switching_from_patient_callback">register_before_switching_from_patient_callback()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPerson.gmCurrentPatient-class.html">gmCurrentPatient</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmKOrganizerPlugin.gmKOrganizerPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmKOrganizerPlugin.gmKOrganizerPlugin-class.html">gmKOrganizerPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html#recalldata">recalldata</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html">Gnumed.wxpython.patient.gmGP_Recalls</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls.ScratchPadRecalls-class.html#register_interests">register_interests()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls.ScratchPadRecalls-class.html">ScratchPadRecalls</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin.gmMeasurementsGridPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmMeasurementsGridPlugin.gmMeasurementsGridPlugin-class.html">gmMeasurementsGridPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls-module.html#recalldata">recalldata</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_ScratchPadRecalls-module.html">Gnumed.wxpython.patient.gmGP_ScratchPadRecalls</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.db.MemoryDB-class.html#register_save_callback">register_save_callback()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.db.MemoryDB-class.html">MemoryDB</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmMeasurementsPlugin.gmMeasurementsPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmMeasurementsPlugin.gmMeasurementsPlugin-class.html">gmMeasurementsPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html#recallprompts">recallprompts</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html">Gnumed.wxpython.patient.gmGP_Recalls</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.container.Container-class.html#register_subevent">register_subevent()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.container.Container-class.html">Container</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin.gmNotebookedPatientEditionPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmNotebookedPatientEditionPlugin.gmNotebookedPatientEditionPlugin-class.html">gmNotebookedPatientEditionPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Recalls.RecallsPanel-class.html">RecallsPanel</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_Recalls-module.html">Gnumed.wxpython.patient.gmGP_Recalls</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.db.interface.ContainerStrategy-class.html#register_subevent">register_subevent()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.db.interface.ContainerStrategy-class.html">ContainerStrategy</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin.gmNotebookedProgressNoteInputPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmNotebookedProgressNoteInputPlugin.gmNotebookedProgressNoteInputPlugin-class.html">gmNotebookedProgressNoteInputPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin.cNotebookPlugin-class.html#receive_focus">receive_focus()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin.cNotebookPlugin-class.html">cNotebookPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.db.strategies.DefaultContainerStrategy-class.html#register_subevent">register_subevent()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.db.strategies.DefaultContainerStrategy-class.html">DefaultContainerStrategy</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmPACSPlugin.gmPACSPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmPACSPlugin.gmPACSPlugin-class.html">gmPACSPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmManual.gmManual-class.html#receive_focus">receive_focus()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmManual.gmManual-class.html">gmManual</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.db.strategies.ExtendedContainerStrategy-class.html#register_subevent">register_subevent()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.db.strategies.ExtendedContainerStrategy-class.html">ExtendedContainerStrategy</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin.gmPatientOverviewPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmPatientOverviewPlugin.gmPatientOverviewPlugin-class.html">gmPatientOverviewPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html#ReceiveFocus">ReceiveFocus()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html">BasePlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.utils-module.html#register_unlock_function">register_unlock_function()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.utils-module.html">Gnumed.timelinelib.wxgui.utils</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmProviderInboxPlugin.gmProviderInboxPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmProviderInboxPlugin.gmProviderInboxPlugin-class.html">gmProviderInboxPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.config.dotfile-module.html#RECENT_FILES">RECENT_FILES</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.config.dotfile-module.html">Gnumed.timelinelib.config.dotfile</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.category.Category-class.html#reload">reload()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.category.Category-class.html">Category</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin.gmScanIdxMedDocsPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmScanIdxMedDocsPlugin.gmScanIdxMedDocsPlugin-class.html">gmScanIdxMedDocsPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#reclass_problem">reclass_problem()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.event.Event-class.html#reload">reload()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.event.Event-class.html">Event</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmShowMedDocs.gmShowMedDocs-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmShowMedDocs.gmShowMedDocs-class.html">gmShowMedDocs</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems-module.html#reclass_problem">reclass_problem()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmEMRStructItems-module.html">Gnumed.business.gmEMRStructItems</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cKOrganizerSchedulePnl-class.html#reload_appointments">reload_appointments()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cKOrganizerSchedulePnl-class.html">cKOrganizerSchedulePnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin.gmSimpleSoapPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmSimpleSoapPlugin.gmSimpleSoapPlugin-class.html">gmSimpleSoapPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments-module.html#reclassify_documents_by_type">reclassify_documents_by_type()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmDocuments-module.html">Gnumed.business.gmDocuments</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg2.gmCfgData-class.html#reload_file_source">reload_file_source()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmCfg2.gmCfgData-class.html">gmCfgData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmSoapPlugin.gmSoapPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmSoapPlugin.gmSoapPlugin-class.html">gmSoapPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#recode_file">recode_file()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.frames.mainframe.mainframecontroller.MainFrameController-class.html#reload_from_disk">reload_from_disk()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.frames.mainframe.mainframecontroller.MainFrameController-class.html">MainFrameController</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmWaitingListPlugin.gmWaitingListPlugin-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmWaitingListPlugin.gmWaitingListPlugin-class.html">gmWaitingListPlugin</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAU_VaccV01.cAU_VaccV01Panel-class.html#recommended_vacc_given">recommended_vacc_given()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmAU_VaccV01.cAU_VaccV01Panel-class.html">cAU_VaccV01Panel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.calendar.gregorian.timetype.DurationType-class.html#remainder_fn">remainder_fn()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.calendar.gregorian.timetype.DurationType-class.html">DurationType</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewer-class.html#required_minimum_role">required_minimum_role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmXdtViewer.gmXdtViewer-class.html">gmXdtViewer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAU_VaccV01.cAU_VaccV01Panel-class.html#recommended_vacc_selected">recommended_vacc_selected()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmAU_VaccV01.cAU_VaccV01Panel-class.html">cAU_VaccV01Panel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cDTO_person-class.html#remember_address">remember_address()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPerson.cDTO_person-class.html">cDTO_person</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.cursor.Cursor-class.html#reset_move">reset_move()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.cursor.Cursor-class.html">Cursor</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.cursor.Cursor-class.html#rect">rect</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.cursor.Cursor-class.html">Cursor</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cDTO_person-class.html#remember_comm_channel">remember_comm_channel()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPerson.cDTO_person-class.html">cDTO_person</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html#reset_ui">reset_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEditArea.cEditArea2-class.html">cEditArea2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.drawing.graphobject.GraphObject-class.html#rect">rect()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.drawing.graphobject.GraphObject-class.html">GraphObject</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cDTO_person-class.html#remember_external_id">remember_external_id()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPerson.cDTO_person-class.html">cDTO_person</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSOAPWidgets.cNotebookedProgressNoteInputPanel-class.html#reset_ui_content">reset_ui_content()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmSOAPWidgets.cNotebookedProgressNoteInputPanel-class.html">cNotebookedProgressNoteInputPanel</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.db.MemoryDB-class.html#redo">redo()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.db.MemoryDB-class.html">MemoryDB</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.general.immutable.ImmutableDict-class.html#remove">remove()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.general.immutable.ImmutableDict-class.html">ImmutableDict</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html#ReSize">ReSize()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmResizingWidgets.cResizingWindow-class.html">cResizingWindow</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.db.MemoryDB-class.html#redo_enabled">redo_enabled()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.db.MemoryDB-class.html">MemoryDB</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinNarrative.cNarrative-class.html#remove_code">remove_code()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmClinNarrative.cNarrative-class.html">cNarrative</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.components.maincanvas.resizebydrag-module.html">resizebydrag</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.components.maincanvas-module.html">Gnumed.timelinelib.wxgui.components.maincanvas</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.timelinecanvas.TimelineCanvas-class.html#Redraw">Redraw()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.timelinecanvas.TimelineCanvas-class.html">TimelineCanvas</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html#remove_code">remove_code()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmEMRStructItems.cEncounter-class.html">cEncounter</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.components.maincanvas.resizebydrag.ResizeByDragInputHandler-class.html">ResizeByDragInputHandler</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.components.maincanvas.resizebydrag-module.html">Gnumed.timelinelib.wxgui.components.maincanvas.resizebydrag</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmTerryGuiParts.cHeadingCaption-class.html#redraw">redraw()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmTerryGuiParts.cHeadingCaption-class.html">cHeadingCaption</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html#remove_code">remove_code()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html">cEpisode</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigEditorPanel-class.html#RevertChanges">RevertChanges()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmConfigRegistry.gmConfigEditorPanel-class.html">gmConfigEditorPanel</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.timelinecanvas.TimelineCanvas-class.html#redraw_surface">redraw_surface()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.timelinecanvas.TimelineCanvas-class.html">TimelineCanvas</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html#remove_code">remove_code()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html">cHealthIssue</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmConfigRegistry.cParamCtrl-class.html#RevertToSaved">RevertToSaved()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmConfigRegistry.cParamCtrl-class.html">cParamCtrl</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.timelinecanvascontroller.TimelineCanvasController-class.html#redraw_timeline">redraw_timeline()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.timelinecanvascontroller.TimelineCanvasController-class.html">TimelineCanvasController</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cPerformedProcedure-class.html#remove_code">remove_code()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmEMRStructItems.cPerformedProcedure-class.html">cPerformedProcedure</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDocumentWidgets-module.html#review_document">review_document()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDocumentWidgets-module.html">Gnumed.wxpython.gmDocumentWidgets</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.components.mainpanel.MainPanel-class.html#redraw_timeline">redraw_timeline()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.components.mainpanel.MainPanel-class.html">MainPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmFamilyHistory.cFamilyHistory-class.html#remove_code">remove_code()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmFamilyHistory.cFamilyHistory-class.html">cFamilyHistory</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDocumentWidgets-module.html#review_document_part">review_document_part()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDocumentWidgets-module.html">Gnumed.wxpython.gmDocumentWidgets</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.components.timelinepanel.TimelinePanel-class.html#redraw_timeline">redraw_timeline()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.components.timelinepanel.TimelinePanel-class.html">TimelinePanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab.cTestPanel-class.html#remove_code">remove_code()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPathLab.cTestPanel-class.html">cTestPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMeasurementWidgets-module.html#review_tests">review_tests()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMeasurementWidgets-module.html">Gnumed.wxpython.gmMeasurementWidgets</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab.cTestResult-class.html#reference_range">reference_range</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPathLab.cTestResult-class.html">cTestResult</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmMedication.cDrugProduct-class.html#remove_component">remove_component()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmMedication.cDrugProduct-class.html">cDrugProduct</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.meta.version-module.html#REVISION_DATE">REVISION_DATE</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.meta.version-module.html">Gnumed.timelinelib.meta.version</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.patient.gmGP_Referrals.ReferralsPanel-class.html">ReferralsPanel</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.patient.gmGP_Referrals-module.html">Gnumed.wxpython.patient.gmGP_Referrals</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html#remove_empty_encounters">remove_empty_encounters()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmClinicalRecord.cClinicalRecord-class.html">cClinicalRecord</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.meta.version-module.html#REVISION_HASH">REVISION_HASH</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.meta.version-module.html">Gnumed.timelinelib.meta.version</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDocuments.cDocument-class.html#refetch_payload">refetch_payload()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmDocuments.cDocument-class.html">cDocument</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#remove_file">remove_file()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.drawing.drawers-module.html#rgb2hsl">rgb2hsl()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.drawing.drawers-module.html">Gnumed.timelinelib.canvas.drawing.drawers</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html#refetch_payload">refetch_payload()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmBusinessDBObject.cBusinessDBObject-class.html">cBusinessDBObject</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmClinicalCalculator.cClinicalCalculator-class.html#remove_from_cache">remove_from_cache()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmClinicalCalculator.cClinicalCalculator-class.html">cClinicalCalculator</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#richards_aqua">richards_aqua</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmAllergyWidgets.cAllergyEditAreaPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmAllergyWidgets.cAllergyEditAreaPnl-class.html">cAllergyEditAreaPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPraxis.gmCurrentPraxisBranch-class.html#remove_from_waiting_list">remove_from_waiting_list()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPraxis.gmCurrentPraxisBranch-class.html">gmCurrentPraxisBranch</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#richards_blue">richards_blue</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmBillingWidgets.cPersonBillItemsManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmBillingWidgets.cPersonBillItemsManagerPnl-class.html">cPersonBillItemsManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#remove_item">remove_item()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#richards_coloured_gray">richards_coloured_gray</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmContactWidgets.cCommChannelsManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmContactWidgets.cCommChannelsManagerPnl-class.html">cCommChannelsManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmBillingWidgets-module.html#remove_items_from_bill">remove_items_from_bill()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmBillingWidgets-module.html">Gnumed.wxpython.gmBillingWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#richards_dark_gray">richards_dark_gray</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cImageTagPresenterPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cImageTagPresenterPnl-class.html">cImageTagPresenterPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html#remove_items_safely">remove_items_safely()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmListWidgets.cReportListCtrl-class.html">cReportListCtrl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea-module.html#richards_light_gray">richards_light_gray</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEditArea-module.html">Gnumed.wxpython.gmEditArea</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cPatOccupationsPanel-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cPatOccupationsPanel-class.html">cPatOccupationsPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPathLab.cTestPanel-class.html#remove_loinc">remove_loinc()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPathLab.cTestPanel-class.html">cTestPanel</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cGenericListManagerPnl-class.html#right_extra_button">right_extra_button</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmListWidgets.cGenericListManagerPnl-class.html">cGenericListManagerPnl</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonDemographicsEditorNb-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonDemographicsEditorNb-class.html">cPersonDemographicsEditorNb</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmXmlDocDesc.xmlDocDesc-class.html#remove_object">remove_object()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmXmlDocDesc.xmlDocDesc-class.html">xmlDocDesc</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cGenericListSelectorDlg-class.html#right_extra_button">right_extra_button</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmListWidgets.cGenericListSelectorDlg-class.html">cGenericListSelectorDlg</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonIDsManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonIDsManagerPnl-class.html">cPersonIDsManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxGladeWidgets.wxgAU_DBUserSetupV01.cAU_DBUserSetupV01-class.html#remove_pg_user">remove_pg_user()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxGladeWidgets.wxgAU_DBUserSetupV01.cAU_DBUserSetupV01-class.html">cAU_DBUserSetupV01</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cItemPickerDlg-class.html#right_item_tooltip_callback">right_item_tooltip_callback</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmListWidgets.cItemPickerDlg-class.html">cItemPickerDlg</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonIdentityManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonIdentityManagerPnl-class.html">cPersonIdentityManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.timelinecanvascontroller.TimelineCanvasController-class.html#remove_selection_rect">remove_selection_rect()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.timelinecanvascontroller.TimelineCanvasController-class.html">TimelineCanvasController</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.timelinecanvas-module.html#RIGHT_RESIZE_HANDLE">RIGHT_RESIZE_HANDLE</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.timelinecanvas-module.html">Gnumed.timelinelib.canvas.timelinecanvas</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonNamesManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonNamesManagerPnl-class.html">cPersonNamesManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmCfg2.gmCfgData-class.html#remove_source">remove_source()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmCfg2.gmCfgData-class.html">gmCfgData</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#rm_dir_content">rm_dir_content()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonSocialNetworkManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cPersonSocialNetworkManagerPnl-class.html">cPersonSocialNetworkManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmPerson.cPerson-class.html#remove_tag">remove_tag()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmPerson.cPerson-class.html">cPerson</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#rmdir">rmdir()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEditArea.cGenericEditAreaMixin-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEditArea.cGenericEditAreaMixin-class.html">cGenericEditAreaMixin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.dialogs.eraseditor.view.ErasEditorDialog-class.html#RemoveEra">RemoveEra()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.dialogs.eraseditor.view.ErasEditorDialog-class.html">ErasEditorDialog</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmStaff.cStaff-class.html#role">role</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmStaff.cStaff-class.html">cStaff</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEncounterWidgets.cActiveEncounterPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEncounterWidgets.cActiveEncounterPnl-class.html">cActiveEncounterPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiColumnList.MultiColumnList-class.html#removeItemListener">removeItemListener()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMultiColumnList.MultiColumnList-class.html">MultiColumnList</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.transactions.Transaction-class.html#rollback">rollback()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.transactions.Transaction-class.html">Transaction</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEncounterWidgets.cEncounterEditAreaPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEncounterWidgets.cEncounterEditAreaPnl-class.html">cEncounterEditAreaPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.timelinecanvas.TimelineCanvas-class.html#RemoveSelectionRect">RemoveSelectionRect()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.timelinecanvas.TimelineCanvas-class.html">TimelineCanvas</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.canvas.data.transactions.Transactions-class.html#rollback">rollback()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.canvas.data.transactions.Transactions-class.html">Transactions</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmExternalCareWidgets.cExternalCareMgrPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmExternalCareWidgets.cExternalCareMgrPnl-class.html">cExternalCareMgrPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html#rename">rename()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmEMRStructItems.cEpisode-class.html">cEpisode</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#row_is_locked">row_is_locked()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmOrganizationWidgets.cOrgUnitIDsMgrPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmOrganizationWidgets.cOrgUnitIDsMgrPnl-class.html">cOrgUnitIDsMgrPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html#rename">rename()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmEMRStructItems.cHealthIssue-class.html">cHealthIssue</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#rst2html">rst2html()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmOrganizationWidgets.cOrgUnitsManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmOrganizationWidgets.cOrgUnitsManagerPnl-class.html">cOrgUnitsManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.components.categorytree.CustomCategoryTreeRenderer-class.html#render">render()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.components.categorytree.CustomCategoryTreeRenderer-class.html">CustomCategoryTreeRenderer</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmTools-module.html#rst2latex_snippet">rst2latex_snippet()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmTools-module.html">Gnumed.pycommon.gmTools</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmOrganizationWidgets.cOrganizationsManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmOrganizationWidgets.cOrganizationsManagerPnl-class.html">cOrganizationsManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.help.helppagerepository.HelpPage-class.html#render_to_html">render_to_html()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.help.helppagerepository.HelpPage-class.html">HelpPage</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmArriba.cArriba-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmArriba.cArriba-class.html">cArriba</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPersonContactWidgets.cPersonAddressesManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPersonContactWidgets.cPersonAddressesManagerPnl-class.html">cPersonAddressesManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.wxgui.dialogs.export.view-module.html#REPLACE">REPLACE</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.wxgui.dialogs.export.view-module.html">Gnumed.timelinelib.wxgui.dialogs.export.view</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter-module.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.exporters.gmPatientExporter-module.html">Gnumed.exporters.gmPatientExporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPersonContactWidgets.cPersonContactsManagerPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPersonContactWidgets.cPersonContactsManagerPnl-class.html">cPersonContactsManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.calendar.bosparanian.bosparanian.BosparanianDateTime-class.html#replace">replace()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.calendar.bosparanian.bosparanian.BosparanianDateTime-class.html">BosparanianDateTime</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPsql.Psql-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmPsql.Psql-class.html">Psql</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmProgressNotesEAWidgets.cProgressNotesEAPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmProgressNotesEAWidgets.cProgressNotesEAPnl-class.html">cProgressNotesEAPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.calendar.gregorian.gregorian.GregorianDateTime-class.html#replace">replace()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.calendar.gregorian.gregorian.GregorianDateTime-class.html">GregorianDateTime</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.pluginbase.PluginBase-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.pluginbase.PluginBase-class.html">PluginBase</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmVisualProgressNoteWidgets.cVisualSoapPresenterPnl-class.html#refresh">refresh()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmVisualProgressNoteWidgets.cVisualSoapPresenterPnl-class.html">cVisualSoapPresenterPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSoapSTCWidgets.cWxTextCtrlCompatibility_StcMixin-class.html#Replace">Replace()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmSoapSTCWidgets.cWxTextCtrlCompatibility_StcMixin-class.html">cWxTextCtrlCompatibility_StcMixin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.eventboxdrawers.defaulteventboxdrawer.DefaultEventBoxDrawer-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.eventboxdrawers.defaulteventboxdrawer.DefaultEventBoxDrawer-class.html">DefaultEventBoxDrawer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html#refresh_bottom_leaf">refresh_bottom_leaf()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html">cMultiSash</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html#replace_keyword_with_expansion">replace_keyword_with_expansion()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html">cResizingSTC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.eventboxdrawers.gradienteventboxdrawer.GradientEventBoxDrawer-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.eventboxdrawers.gradienteventboxdrawer.GradientEventBoxDrawer-class.html">GradientEventBoxDrawer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cGenericListManagerPnl-class.html#refresh_callback">refresh_callback</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmListWidgets.cGenericListManagerPnl-class.html">cGenericListManagerPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmForms.cOOoLetter-class.html#replace_placeholders">replace_placeholders()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmForms.cOOoLetter-class.html">cOOoLetter</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.eventboxdrawers.othergradienteventboxdrawer.OtherGradientEventBoxDrawer-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.eventboxdrawers.othergradienteventboxdrawer.OtherGradientEventBoxDrawer-class.html">OtherGradientEventBoxDrawer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmListWidgets.cGenericListSelectorDlg-class.html#refresh_callback">refresh_callback</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmListWidgets.cGenericListSelectorDlg-class.html">cGenericListSelectorDlg</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html#replace_text">replace_text()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html">cResizingSTC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttobitmap.BitmapExporter-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttobitmap.BitmapExporter-class.html">BitmapExporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmNarrativeWidgets.cSoapNoteInputNotebook-class.html#refresh_current_editor">refresh_current_editor()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmNarrativeWidgets.cSoapNoteInputNotebook-class.html">cSoapNoteInputNotebook</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSoapSTCWidgets.cSoapSTC-class.html#ReplaceSelection">ReplaceSelection()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmSoapSTCWidgets.cSoapSTC-class.html">cSoapSTC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttobitmap.MultiBitmapExporter-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttobitmap.MultiBitmapExporter-class.html">MultiBitmapExporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html#refresh_displayed_leafs">refresh_displayed_leafs()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMultiSash.cMultiSash-class.html">cMultiSash</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSoapSTCWidgets.cSoapSTC-class.html#ReplaceTarget">ReplaceTarget()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmSoapSTCWidgets.cSoapSTC-class.html">cSoapSTC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttolist.ListExporter-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttolist.ListExporter-class.html">ListExporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html#refresh_historical_tree">refresh_historical_tree()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.exporters.gmPatientExporter.cEmrExport-class.html">cEmrExport</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSoapSTCWidgets.cSoapSTC-class.html#ReplaceTargetRE">ReplaceTargetRE()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmSoapSTCWidgets.cSoapSTC-class.html">cSoapSTC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttosvg.SvgExporter-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.exporters.exporttosvg.SvgExporter-class.html">SvgExporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmProgressNotesEAWidgets.cProgressNotesEAPnl-class.html#refresh_summary">refresh_summary()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmProgressNotesEAWidgets.cProgressNotesEAPnl-class.html">cProgressNotesEAPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html#ReplaceText">ReplaceText()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmResizingWidgets.cResizingSTC-class.html">cResizingSTC</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.exporters.timelineexporter.TimelineExporter-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.exporters.timelineexporter.TimelineExporter-class.html">TimelineExporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmProgressNotesEAWidgets.cProgressNotesEAPnl-class.html#refresh_visual_soap">refresh_visual_soap()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmProgressNotesEAWidgets.cProgressNotesEAPnl-class.html">cProgressNotesEAPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html#repopulate_grid">repopulate_grid()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsGrid-class.html">cMeasurementsGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.texttransformers.defaulttexttransformer.DefaultTextTransformer-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.texttransformers.defaulttexttransformer.DefaultTextTransformer-class.html">DefaultTextTransformer</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmVaccWidgets-module.html#regenerate_generic_vaccines">regenerate_generic_vaccines()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmVaccWidgets-module.html">Gnumed.wxpython.gmVaccWidgets</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html#repopulate_grid">repopulate_grid()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMedicationWidgets.cCurrentSubstancesGrid-class.html">cCurrentSubstancesGrid</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.plugin.plugins.texttransformers.plaintexttohtml.PlainTextToHtml-class.html#run">run()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.plugin.plugins.texttransformers.plaintexttohtml.PlainTextToHtml-class.html">PlainTextToHtml</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.config.dateformatparser-module.html#REGION_LENGTH">REGION_LENGTH</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.config.dateformatparser-module.html">Gnumed.timelinelib.config.dateformatparser</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDataMiningWidgets.cDataMiningPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDataMiningWidgets.cDataMiningPnl-class.html">cDataMiningPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmShellAPI-module.html#run_command_in_shell">run_command_in_shell()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmShellAPI-module.html">Gnumed.pycommon.gmShellAPI</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.config.dateformatparser-module.html#REGION_SEPARATOR">REGION_SEPARATOR</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.config.dateformatparser-module.html">Gnumed.timelinelib.config.dateformatparser</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDemographicsWidgets.cKOrganizerSchedulePnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDemographicsWidgets.cKOrganizerSchedulePnl-class.html">cKOrganizerSchedulePnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmShellAPI-module.html#run_first_available_in_shell">run_first_available_in_shell()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmShellAPI-module.html">Gnumed.pycommon.gmShellAPI</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.config.dateformatparser-module.html#REGION_START_POS">REGION_START_POS</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.config.dateformatparser-module.html">Gnumed.timelinelib.config.dateformatparser</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDeviceWidgets.cCardiacDevicePluginPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDeviceWidgets.cCardiacDevicePluginPnl-class.html">cCardiacDevicePluginPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.gnumed-module.html#run_gui">run_gui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.gnumed-module.html">Gnumed.gnumed</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.config.dateformatparser-module.html#REGION_TYPE">REGION_TYPE</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.config.dateformatparser-module.html">Gnumed.timelinelib.config.dateformatparser</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDocumentWidgets.cEditDocumentTypesPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDocumentWidgets.cEditDocumentTypesPnl-class.html">cEditDocumentTypesPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmHooks-module.html#run_hook_script">run_hook_script()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmHooks-module.html">Gnumed.pycommon.gmHooks</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.timelinelib.general.observer.Observable-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.timelinelib.general.observer.Observable-class.html">Observable</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmDocumentWidgets.cScanIdxDocsPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmDocumentWidgets.cScanIdxDocsPnl-class.html">cScanIdxDocsPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.importers.gmLDTimporter-module.html#run_import">run_import()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.importers.gmLDTimporter-module.html">Gnumed.importers.gmLDTimporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin.cNotebookPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin.cNotebookPlugin-class.html">cNotebookPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRBrowser.cEMRJournalPluginPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEMRBrowser.cEMRJournalPluginPnl-class.html">cEMRJournalPluginPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.importers.gmSMSImporter-module.html#run_importer">run_importer()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.importers.gmSMSImporter-module.html">Gnumed.importers.gmSMSImporter</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin_Patient.BasePlugin-class.html">BasePlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRBrowser.cEMRListJournalPluginPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEMRBrowser.cEMRListJournalPluginPnl-class.html">cEMRListJournalPluginPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#run_insert">run_insert()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmPlugin_Patient.wxPatientPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmPlugin_Patient.wxPatientPlugin-class.html">wxPatientPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRBrowser.cSplittedEMRTreeBrowserPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEMRBrowser.cSplittedEMRTreeBrowserPnl-class.html">cSplittedEMRTreeBrowserPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmShellAPI-module.html#run_process">run_process()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmShellAPI-module.html">Gnumed.pycommon.gmShellAPI</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmBillingPlugin.gmBillingPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmBillingPlugin.gmBillingPlugin-class.html">gmBillingPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmEMRTimelineWidgets.cEMRTimelinePluginPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmEMRTimelineWidgets.cEMRTimelinePluginPnl-class.html">cEMRTimelinePluginPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.business.gmDataMining-module.html#run_report_query">run_report_query()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.business.gmDataMining-module.html">Gnumed.business.gmDataMining</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin.gmCurrentSubstancesPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmCurrentSubstancesPlugin.gmCurrentSubstancesPlugin-class.html">gmCurrentSubstancesPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmExamplePluginWidgets.cExamplePluginPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmExamplePluginWidgets.cExamplePluginPnl-class.html">cExamplePluginPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#run_ro_queries">run_ro_queries()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin.gmEMRBrowserPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRBrowserPlugin.gmEMRBrowserPlugin-class.html">gmEMRBrowserPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmExportAreaWidgets.cExportAreaPluginPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmExportAreaWidgets.cExportAreaPluginPnl-class.html">cExportAreaPluginPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#run_rw_queries">run_rw_queries()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRJournalPlugin.gmEMRJournalPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRJournalPlugin.gmEMRJournalPlugin-class.html">gmEMRJournalPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsNb-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmMeasurementWidgets.cMeasurementsNb-class.html">cMeasurementsNb</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.pycommon.gmPG2-module.html#run_sql_script">run_sql_script()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.pycommon.gmPG2-module.html">Gnumed.pycommon.gmPG2</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRListJournalPlugin.gmEMRListJournalPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRListJournalPlugin.gmEMRListJournalPlugin-class.html">gmEMRListJournalPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmProviderInboxWidgets.cProviderInboxPnl-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmProviderInboxWidgets.cProviderInboxPnl-class.html">cProviderInboxPnl</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.gnumed-module.html#run_tool">run_tool()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.gnumed-module.html">Gnumed.gnumed</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmEMRTimelinePlugin.gmEMRTimelinePlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmEMRTimelinePlugin.gmEMRTimelinePlugin-class.html">gmEMRTimelinePlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmRegetMixin.cRegetOnPaintMixin-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmRegetMixin.cRegetOnPaintMixin-class.html">cRegetOnPaintMixin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSoapSTCWidgets-module.html#runTest">runTest()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmSoapSTCWidgets-module.html">Gnumed.wxpython.gmSoapSTCWidgets</a>)</span></td>
</tr>
<tr>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gui.gmExportAreaPlugin.gmExportAreaPlugin-class.html#register">register()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gui.gmExportAreaPlugin.gmExportAreaPlugin-class.html">gmExportAreaPlugin</a>)</span></td>
<td width="33%" class="link-index"><a href="Gnumed.wxpython.gmSOAPWidgets.cNotebookedProgressNoteInputPanel-class.html#repopulate_ui">repopulate_ui()</a><br />
<span class="index-where">(in&nbsp;<a href="Gnumed.wxpython.gmSOAPWidgets.cNotebookedProgressNoteInputPanel-class.html">cNotebookedProgressNoteInputPanel</a>)</span></td>
<td width="33%" class="link-index">&nbsp;</td>
</tr>
</table>
</td></tr>
</table>
<br /><br /><!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
       bgcolor="#a0c0ff" cellspacing="0">
  <tr valign="middle">
  <!-- Home link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="Gnumed-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Tree link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Index link -->
      <th bgcolor="#70b0f0" class="navbar-select"
          >&nbsp;&nbsp;&nbsp;Indices&nbsp;&nbsp;&nbsp;</th>

  <!-- Help link -->
      <th>&nbsp;&nbsp;&nbsp;<a
        href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th>

  <!-- Project homepage -->
      <th class="navbar" align="right" width="100%">
        <table border="0" cellpadding="0" cellspacing="0">
          <tr><th class="navbar" align="center"
            ><a class="navbar" target="_top" href="http://www.gnumed.org">GNUmed Never Sleeps</a></th>
          </tr></table></th>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
  <tr>
    <td align="left" class="footer">
    Generated by Epydoc 3.0.1
    on Fri Jan 25 02:55:27 2019
    </td>
    <td align="right" class="footer">
      <a target="mainFrame" href="http://epydoc.sourceforge.net"
        >http://epydoc.sourceforge.net</a>
    </td>
  </tr>
</table>

<script type="text/javascript">
  <!--
  // Private objects are initially displayed (because if
  // javascript is turned off then we want them to be
  // visible); but by default, we want to hide them.  So hide
  // them unless we have a cookie that says to show them.
  checkCookie();
  // -->
</script>
</body>
</html>