[orca-list] use java-atk-wrapper
- From: Chris <chrys87 web de>
- To: orca-list <orca-list gnome org>
- Subject: [orca-list] use java-atk-wrapper
- Date: Fri, 03 Aug 2012 18:19:29 +0200
Hi All,
I try access java swing programms via orca and the java-atk-wrapper.
I install the wrapper with:
sudo yum install java-atk-wrapper.i686
in Fedora 17.
But Java apps wont seems accessible. i cant found any good docu about
the wrapper or its work.
what i have to do?
It try a easy programm (i navigate with tab between the buttons but orca
wont speek :(. have i to code something? Sorry i cant found any docu):
import java.awt.FlowLayout;
import javax.swing.*;
public class Gui extends JFrame{
private JButton button;
private JButton button2;
public Gui() {
setLayout(new FlowLayout());
button = new JButton();
button2 = new JButton();
setTitle("atk test");
button.setText("OK");
button2.setText("abbrechen");
setSize(399,399);
add(button);
add(button2);
setVisible(true);
}
}
public class Main {
public static void main(String[] args) {
new Gui();
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]