[l10n] Updated Catalan (Valencian) translation
[platform/upstream/atk.git] / atk / atkselection.h
index e397b49..df508bf 100644 (file)
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
+#ifndef __ATK_SELECTION_H__
+#define __ATK_SELECTION_H__
+
 #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
 #error "Only <atk/atk.h> can be included directly."
 #endif
 
-#ifndef __ATK_SELECTION_H__
-#define __ATK_SELECTION_H__
-
 #include <atk/atkobject.h>
 
 G_BEGIN_DECLS
@@ -65,24 +67,32 @@ struct _AtkSelectionIface
   void         (*selection_changed)     (AtkSelection   *selection);
 };
 
+ATK_AVAILABLE_IN_ALL
 GType atk_selection_get_type (void);
 
+ATK_AVAILABLE_IN_ALL
 gboolean     atk_selection_add_selection        (AtkSelection   *selection,
                                                  gint           i);
 
+ATK_AVAILABLE_IN_ALL
 gboolean     atk_selection_clear_selection      (AtkSelection   *selection);
 
+ATK_AVAILABLE_IN_ALL
 AtkObject*   atk_selection_ref_selection        (AtkSelection   *selection,
                                                  gint           i);
 
+ATK_AVAILABLE_IN_ALL
 gint         atk_selection_get_selection_count  (AtkSelection   *selection);
 
+ATK_AVAILABLE_IN_ALL
 gboolean     atk_selection_is_child_selected    (AtkSelection   *selection,
                                                  gint           i);
 
+ATK_AVAILABLE_IN_ALL
 gboolean     atk_selection_remove_selection     (AtkSelection   *selection,
                                                  gint           i);
 
+ATK_AVAILABLE_IN_ALL
 gboolean     atk_selection_select_all_selection (AtkSelection   *selection);
 
 G_END_DECLS