@ -246,13 +246,45 @@ public class FormulaPane extends BasicPane implements KeyListener, UIFormula {
}
}
public class DoubleClick extends MouseAdapter {
public class DoubleClick extends MouseAdapter {
String singlePressContent ;
String doublePressContent ;
@Override
public void mousePressed ( MouseEvent e ) {
int index = tipsList . getSelectedIndex ( ) ;
if ( index ! = - 1 ) {
if ( e . getClickCount ( ) = = 1 ) {
singlePressContent = ( String ) listModel . getElementAt ( index ) ;
} else if ( e . getClickCount ( ) = = 2 ) {
doublePressContent = ( String ) listModel . getElementAt ( index ) ;
}
}
}
@Override
@Override
public void mouseClicked ( MouseEvent e ) {
public void mouseReleas ed ( MouseEvent e ) {
int index = tipsList . getSelectedIndex ( ) ;
int index = tipsList . getSelectedIndex ( ) ;
if ( index ! = - 1 ) {
if ( index ! = - 1 ) {
String currentLineContent = ( String ) listModel . getElementAt ( index ) ;
if ( e . getClickCount ( ) = = 1 ) {
if ( e . getClickCount ( ) = = 2 ) {
if ( ComparatorUtils . equals ( ( String ) listModel . getElementAt ( index ) , singlePressContent ) ) {
singleClickActuator ( singlePressContent ) ;
}
} else if ( e . getClickCount ( ) = = 2 ) {
if ( ComparatorUtils . equals ( ( String ) listModel . getElementAt ( index ) , doublePressContent ) ) {
doubleClickActuator ( doublePressContent ) ;
}
}
}
}
private void singleClickActuator ( String currentLineContent ) {
refreshDescriptionTextArea ( currentLineContent ) ;
formulaTextArea . requestFocusInWindow ( ) ;
fixFunctionNameList ( ) ;
}
private void doubleClickActuator ( String currentLineContent ) {
if ( ifHasBeenWriten = = 0 ) {
if ( ifHasBeenWriten = = 0 ) {
formulaTextArea . setForeground ( Color . black ) ;
formulaTextArea . setForeground ( Color . black ) ;
formulaTextArea . setText ( "" ) ;
formulaTextArea . setText ( "" ) ;
@ -276,13 +308,6 @@ public class FormulaPane extends BasicPane implements KeyListener, UIFormula {
insertPosition = position ;
insertPosition = position ;
ifHasBeenWriten = 1 ;
ifHasBeenWriten = 1 ;
listModel . removeAllElements ( ) ;
listModel . removeAllElements ( ) ;
} else if ( e . getClickCount ( ) = = 1 ) {
refreshDescriptionTextArea ( currentLineContent ) ;
formulaTextArea . requestFocusInWindow ( ) ;
fixFunctionNameList ( ) ;
}
}
}
}
}
}