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
|
/* $XConsortium: ScrollFrameT.c /main/5 1995/07/15 20:55:20 drk $ */
/*
* Motif
*
* Copyright (c) 1987-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with these librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
/*
* HISTORY
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "XmI.h"
#include <Xm/TraitP.h>
#include <Xm/ScrollFrameT.h>
#include <Xm/NavigatorT.h>
#include "MessagesI.h"
#include "ScrollFramTI.h"
#define SWMessage3 _XmMMsgScrollFrameT_0000
#define SWMessage4 _XmMMsgScrollFrameT_0001
/************************************************************************
*
* _XmSFAddNavigator convenience function
* Entering here, sf is an initialized scrollframe, and
* scroll_frame_data is always valid (but the move_cb field can be
* NULL, for pure APP_DEFINED case support).
*
*************************************<->***********************************/
void
_XmSFAddNavigator(
Widget sf,
Widget nav,
Mask dimMask,
XmScrollFrameData scroll_frame_data)
{
XmNavigatorTrait nav_trait ;
XmNavigatorDataRec nav_data ;
if ((nav_trait = (XmNavigatorTrait)
XmeTraitGet((XtPointer) XtClass(nav), XmQTnavigator)) != NULL) {
/* check for NULL move_cb */
if (scroll_frame_data->move_cb)
nav_trait -> changeMoveCB(nav, scroll_frame_data->move_cb,
(XtPointer) scroll_frame_data->scrollable,
True) ;
nav_data.valueMask = NavDimMask ;
nav_data.dimMask = dimMask ;
nav_trait -> setValue(nav, &nav_data, False);
if (scroll_frame_data->num_nav_list ==
scroll_frame_data->num_nav_slots) {
/* Allocate more space */
scroll_frame_data->num_nav_slots += 2;
scroll_frame_data->nav_list =
(WidgetList) XtRealloc((char*)scroll_frame_data->nav_list,
scroll_frame_data->num_nav_slots * sizeof(Widget));
}
scroll_frame_data->nav_list[scroll_frame_data->num_nav_list] = nav;
scroll_frame_data->num_nav_list++;
} else {
XmeWarning(sf, SWMessage3);
}
}
/************************************************************************
*
* _XmSFRemoveNavigator convenience function
*
*************************************<->***********************************/
void
_XmSFRemoveNavigator(
Widget sf,
Widget nav,
XmScrollFrameData scroll_frame_data)
{
Cardinal position, i;
XmNavigatorTrait nav_trait ;
if ((nav_trait = (XmNavigatorTrait)
XmeTraitGet((XtPointer) XtClass(nav), XmQTnavigator)) != NULL) {
/* remove the move callback */
if (scroll_frame_data->move_cb)
nav_trait -> changeMoveCB(nav, scroll_frame_data->move_cb,
(XtPointer) scroll_frame_data->scrollable,
False) ;
} else {
XmeWarning(sf, SWMessage4);
return ;
}
for (position = 0; position<scroll_frame_data->num_nav_list; position++) {
if (scroll_frame_data->nav_list[position] == nav) {
break;
}
}
if (position == scroll_frame_data->num_nav_list) return;
scroll_frame_data->num_nav_list--;
for (i = position; i < scroll_frame_data->num_nav_list; i++) {
scroll_frame_data->nav_list[i] = scroll_frame_data->nav_list[i+1];
}
}
/************************************************************************
*
* _XmSFUpdateNavigatorsValues convenience function
*
*************************************<->***********************************/
void
_XmSFUpdateNavigatorsValue(
Widget sf,
XmNavigatorData nav_data,
Boolean notify)
{
Cardinal i, num_nav_list ;
Widget * nav_list ;
Boolean inited ;
/* there is a possibility that the SW was not inited for
navigation business: APP_DEFINED where no scrollbar have
been added yet */
inited = ((XmScrollFrameTrait)
XmeTraitGet((XtPointer) XtClass(sf), XmQTscrollFrame))
->getInfo(sf, NULL, &nav_list, &num_nav_list);
if (!inited) return ;
/* loop over the associated navigator list and call the change value
method for each navigator */
/* Updating the first navigator only if notify is True is not
enough, since the dimension is pertinent */
for (i=0; i < num_nav_list; i++) {
Widget nav = nav_list[i] ;
XmNavigatorSetValueProc nav_setValue =
((XmNavigatorTrait)
XmeTraitGet((XtPointer) XtClass(nav), XmQTnavigator))->setValue;
nav_setValue(nav, nav_data, notify);
}
}
|