[orca-list] use java-atk-wrapper



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]