Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/accessible/windows/ia2/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  ia2AccessibleApplication.cpp   Sprache: C

 
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:expandtab:shiftwidth=4:tabstop=4:
 */

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#include "ia2AccessibleApplication.h"

#include "AccessibleApplication_i.c"
#include "ApplicationAccessibleWrap.h"

using namespace mozilla;
using namespace mozilla::a11y;

ApplicationAccessible* ia2AccessibleApplication::AppAcc() {
  return static_cast<ApplicationAccessible*>(LocalAcc());
}

////////////////////////////////////////////////////////////////////////////////
// IUnknown

IMPL_IUNKNOWN_QUERY_HEAD(ia2AccessibleApplication)
IMPL_IUNKNOWN_QUERY_IFACE(IAccessibleApplication)
IMPL_IUNKNOWN_QUERY_TAIL_INHERITED(MsaaAccessible)

////////////////////////////////////////////////////////////////////////////////
// IAccessibleApplication

STDMETHODIMP
ia2AccessibleApplication::get_appName(BSTR* aName) {
  if (!aName) return E_INVALIDARG;

  *aName = nullptr;

  ApplicationAccessible* appAcc = AppAcc();
  if (!appAcc) return CO_E_OBJNOTCONNECTED;

  nsAutoString name;
  appAcc->AppName(name);
  if (name.IsEmpty()) return S_FALSE;

  *aName = ::SysAllocStringLen(name.get(), name.Length());
  return *aName ? S_OK : E_OUTOFMEMORY;
}

STDMETHODIMP
ia2AccessibleApplication::get_appVersion(BSTR* aVersion) {
  if (!aVersion) return E_INVALIDARG;

  *aVersion = nullptr;

  ApplicationAccessible* appAcc = AppAcc();
  if (!appAcc) return CO_E_OBJNOTCONNECTED;

  nsAutoString version;
  appAcc->AppVersion(version);
  if (version.IsEmpty()) return S_FALSE;

  *aVersion = ::SysAllocStringLen(version.get(), version.Length());
  return *aVersion ? S_OK : E_OUTOFMEMORY;
}

STDMETHODIMP
ia2AccessibleApplication::get_toolkitName(BSTR* aName) {
  if (!aName) return E_INVALIDARG;

  ApplicationAccessible* appAcc = AppAcc();
  if (!appAcc) return CO_E_OBJNOTCONNECTED;

  nsAutoString name;
  appAcc->PlatformName(name);
  if (name.IsEmpty()) return S_FALSE;

  *aName = ::SysAllocStringLen(name.get(), name.Length());
  return *aName ? S_OK : E_OUTOFMEMORY;
}

STDMETHODIMP
ia2AccessibleApplication::get_toolkitVersion(BSTR* aVersion) {
  if (!aVersion) return E_INVALIDARG;

  *aVersion = nullptr;

  ApplicationAccessible* appAcc = AppAcc();
  if (!appAcc) return CO_E_OBJNOTCONNECTED;

  nsAutoString version;
  appAcc->PlatformVersion(version);
  if (version.IsEmpty()) return S_FALSE;

  *aVersion = ::SysAllocStringLen(version.get(), version.Length());
  return *aVersion ? S_OK : E_OUTOFMEMORY;
}

Messung V0.5
C=95 H=100 G=97

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.