summaryrefslogtreecommitdiff
path: root/src/OpenGl/OpenGl_togl_pickid.cxx
blob: c12e3ab217eb89c27ef9e8bed82cb47caa16264a (plain)
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
/***********************************************************************

FONCTION :
----------
File OpenGl_togl_pickid.c :


REMARQUES:
---------- 

HISTORIQUE DES MODIFICATIONS   :
--------------------------------
xx-xx-xx : xxx ; Creation.
03-03-98 : CAL ; Modification des structures CALL_DEF_GROUP et STRUCTURE

************************************************************************/

/*----------------------------------------------------------------------*/
/*
* Includes
*/ 

#include <OpenGl_tgl_all.hxx>
#include <InterfaceGraphic_Graphic3d.hxx>
#include <OpenGl_tgl.hxx>
#include <OpenGl_tgl_funcs.hxx>
#include <OpenGl_tgl_utilgr.hxx>

/*----------------------------------------------------------------------*/

void EXPORT
call_togl_pickid
(
 CALL_DEF_GROUP * agroup
 )
{
  call_func_open_struct( agroup->Struct->Id );
  call_func_set_elem_ptr( 0 );
  call_func_set_elem_ptr_label( agroup->LabelBegin );
  if( agroup->PickId.IsDef )
  {
    if( agroup->PickId.IsSet )
    {
      call_func_offset_elem_ptr( 1 );
      call_func_set_edit_mode( CALL_PHIGS_EDIT_REPLACE );
    }
    else
      call_func_set_edit_mode( CALL_PHIGS_EDIT_INSERT );

    call_func_set_pick_id( agroup->PickId.Value );
  }
  else
  {
    if( agroup->PickId.IsSet )
    {
      call_func_offset_elem_ptr( 1 );
      call_func_del_elem();
    }
  }
  call_func_close_struct();

  return;
}