-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Main module converted to root module and testing is done
- Loading branch information
Nafeez Abrar
committed
Oct 6, 2016
1 parent
9d56646
commit da3dc0f
Showing
9 changed files
with
44 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include 'main' | ||
rootProject.name = 'mqtt-client' | ||
include 'ui' | ||
include 'core' | ||
include 'paho-mqtt' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.Label?> | ||
<?import javafx.scene.control.ListView?> | ||
<?import javafx.scene.control.TextArea?> | ||
<?import javafx.scene.control.TextField?> | ||
<?import javafx.scene.layout.AnchorPane?> | ||
|
||
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="631.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.nafeezabrar.mqtt.client.ui.controllers.MainController"> | ||
<children> | ||
<Label layoutX="23.0" layoutY="37.0" text="Topic" /> | ||
<TextField fx:id="topicTextField" layoutX="99.0" layoutY="32.0" prefHeight="27.0" prefWidth="286.0" promptText="Topic of sending message" /> | ||
<Label layoutX="23.0" layoutY="89.0" text="Message" /> | ||
<TextField fx:id="messageTextField" layoutX="99.0" layoutY="84.0" prefHeight="27.0" prefWidth="286.0" promptText="Message to send" /> | ||
<Button fx:id="sendButton" layoutX="335.0" layoutY="124.0" mnemonicParsing="false" onAction="#sendButtonAction" text="Send" /> | ||
<Label layoutX="23.0" layoutY="183.0" text="Topic Filters" /> | ||
<TextArea fx:id="topicFiltersTextArea" layoutX="23.0" layoutY="216.0" prefHeight="112.0" prefWidth="361.0" promptText="Topics to subscribed" /> | ||
<Button fx:id="subscribeButton" layoutX="305.0" layoutY="335.0" mnemonicParsing="false" onAction="#subscribedButtonAction" text="Subscribe" /> | ||
<ListView fx:id="receivedMessagesListView" layoutX="403.0" layoutY="17.0" prefHeight="366.0" prefWidth="208.0" /> | ||
</children> | ||
</AnchorPane> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters