Craig Raw
4 years ago
15 changed files with 145 additions and 66 deletions
@ -1,5 +1,18 @@ |
|||
package com.sparrowwallet.sparrow.event; |
|||
|
|||
import javafx.stage.Window; |
|||
|
|||
/** |
|||
* Event class used to request the QRScanDialog is opened |
|||
*/ |
|||
public class RequestQRScanEvent { |
|||
//Empty event class used to request the QRScanDialog is opened
|
|||
private final Window window; |
|||
|
|||
public RequestQRScanEvent(Window window) { |
|||
this.window = window; |
|||
} |
|||
|
|||
public Window getWindow() { |
|||
return window; |
|||
} |
|||
} |
|||
|
@ -1,5 +1,18 @@ |
|||
package com.sparrowwallet.sparrow.event; |
|||
|
|||
import javafx.stage.Window; |
|||
|
|||
/** |
|||
* Event class used to request the transaction open file dialog |
|||
*/ |
|||
public class RequestTransactionOpenEvent { |
|||
//Empty event class used to request the transaction open file dialog
|
|||
private final Window window; |
|||
|
|||
public RequestTransactionOpenEvent(Window window) { |
|||
this.window = window; |
|||
} |
|||
|
|||
public Window getWindow() { |
|||
return window; |
|||
} |
|||
} |
|||
|
@ -1,5 +1,18 @@ |
|||
package com.sparrowwallet.sparrow.event; |
|||
|
|||
import javafx.stage.Window; |
|||
|
|||
/** |
|||
* Event class used to request the wallet open dialog |
|||
*/ |
|||
public class RequestWalletOpenEvent { |
|||
//Empty event class used to request the wallet open dialog
|
|||
private final Window window; |
|||
|
|||
public RequestWalletOpenEvent(Window window) { |
|||
this.window = window; |
|||
} |
|||
|
|||
public Window getWindow() { |
|||
return window; |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue