Skip to content

Commit

Permalink
Profile Image Integration
Browse files Browse the repository at this point in the history
  • Loading branch information
clj13001 committed Feb 8, 2017
1 parent 0f95bc8 commit d4a6920
Show file tree
Hide file tree
Showing 98 changed files with 1,995 additions and 0 deletions.
11 changes: 11 additions & 0 deletions WebContent/html/css/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ div.displayDevice{
left: 300px;
}

div.profileContainer{
display: inline-block;
position: absolute;
padding-left: 30px;
width: 100%;
height: 100%;
overflow: scroll;
left: 300px;
top: 70px;
}

div.modal{
display:none;
position: fixed;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : Nov 28, 2013, 7:09:35 AM
Author : bugraozden
*/

.icon-select{
width:0px;
}

.icon-select .selected-box {

position: relative;
margin: 0px;
padding: 0px;
width: 70px; /* sil */
height: 60px; /* sil */
border: 1px solid #999999;
/*background-color: #FFFFFF;*/

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;

}

.icon-select .selected-box:hover {

position: relative;
margin: 0px;
padding: 0px;
width: 70px; /* sil */
height: 60px; /* sil */
border: 1px solid #000000;
background-color: #FFFFFF;

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;

}

.icon-select .selected-icon {

position: absolute;
margin: 0px;
padding: 0px;
top:5px;
left:5px;
width: 48px; /* sil */
height: 48px; /* sil */

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;

}

.icon-select .component-icon{
position: absolute;
bottom:5px;
right:4px;
}

.icon-select .box {

position: absolute;
top:0px;
left:71px;
margin: 0px;
padding: 0px;
width: 170px; /* sil */
height: 170px; /* sil */
border: 1px solid #EEEEEE;
background-color: #EEEEEE;

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;


overflow:auto;
/*
-webkit-overflow-scrolling: touch;
*/

}

.icon-select .icon {
position: relative;
margin: 5px 0px 0px 5px;
padding: 0px;
width: 48px; /* sil */
height: 48px; /* sil */
border: 1px solid #CCCCCC;
background-color: #FFFFFF;

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;

overflow:hidden;
float: left;
}

.icon-select .icon:hover {
border: 1px solid #000000;
}

.icon-select .icon.selected {
position: relative;
margin: 5px 0px 0px 5px;
padding: 0px;
width: 48px; /* sil */
height: 48px; /* sil */
border: 1px solid #EEEEEE;
background-color: #EEEEEE;

-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;

overflow:hidden;
float: left;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<html>
<head>
<meta charset="UTF-8">
<title>Icon/Image Select: Basic Example (Javascript)</title>

<link rel="stylesheet" type="text/css" href="css/lib/control/iconselect.css" >
<script type="text/javascript" src="lib/control/iconselect.js"></script>

<script type="text/javascript" src="lib/iscroll.js"></script>

<script>

var iconSelect;
var selectedText;

window.onload = function(){

selectedText = document.getElementById('selected-text');

document.getElementById('my-icon-select').addEventListener('changed', function(e){
selectedText.value = iconSelect.getSelectedValue();
});

iconSelect = new IconSelect("my-icon-select");

var icons = [];
icons.push({'iconFilePath':'images/icons/1.png', 'iconValue':'1'});
icons.push({'iconFilePath':'images/icons/2.png', 'iconValue':'2'});
icons.push({'iconFilePath':'images/icons/3.png', 'iconValue':'3'});
icons.push({'iconFilePath':'images/icons/4.png', 'iconValue':'4'});
icons.push({'iconFilePath':'images/icons/5.png', 'iconValue':'5'});
icons.push({'iconFilePath':'images/icons/6.png', 'iconValue':'6'});
icons.push({'iconFilePath':'images/icons/7.png', 'iconValue':'7'});
icons.push({'iconFilePath':'images/icons/8.png', 'iconValue':'8'});
icons.push({'iconFilePath':'images/icons/9.png', 'iconValue':'9'});
icons.push({'iconFilePath':'images/icons/10.png', 'iconValue':'10'});
icons.push({'iconFilePath':'images/icons/11.png', 'iconValue':'11'});
icons.push({'iconFilePath':'images/icons/12.png', 'iconValue':'12'});
icons.push({'iconFilePath':'images/icons/13.png', 'iconValue':'13'});
icons.push({'iconFilePath':'images/icons/14.png', 'iconValue':'14'});

iconSelect.refresh(icons);



};

</script>

</head>
<body>

<h2>Icon/Image Select: Basic Example (Javascript)</h2>

<div id="my-icon-select"></div>

<input type="text" id="selected-text" name="selected-text" style="width:65px;">

</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<html>
<head>
<meta charset="UTF-8">
<title>Icon/Image Select: Nano Example (Javascript)</title>

<link rel="stylesheet" type="text/css" href="css/lib/control/iconselect.css" >
<script type="text/javascript" src="lib/control/iconselect.js"></script>

<script type="text/javascript" src="lib/iscroll.js"></script>

<script>

var iconSelect;

window.onload = function(){

iconSelect = new IconSelect("my-icon-select",
{'selectedIconWidth':48,
'selectedIconHeight':48,
'selectedBoxPadding':1,
'iconsWidth':23,
'iconsHeight':23,
'boxIconSpace':1,
'vectoralIconNumber':4,
'horizontalIconNumber':4});

var icons = [];
icons.push({'iconFilePath':'images/icons/1.png', 'iconValue':'1'});
icons.push({'iconFilePath':'images/icons/2.png', 'iconValue':'2'});
icons.push({'iconFilePath':'images/icons/3.png', 'iconValue':'3'});
icons.push({'iconFilePath':'images/icons/4.png', 'iconValue':'4'});
icons.push({'iconFilePath':'images/icons/5.png', 'iconValue':'5'});
icons.push({'iconFilePath':'images/icons/6.png', 'iconValue':'6'});
icons.push({'iconFilePath':'images/icons/7.png', 'iconValue':'7'});
icons.push({'iconFilePath':'images/icons/8.png', 'iconValue':'8'});
icons.push({'iconFilePath':'images/icons/9.png', 'iconValue':'9'});
icons.push({'iconFilePath':'images/icons/10.png', 'iconValue':'10'});
icons.push({'iconFilePath':'images/icons/11.png', 'iconValue':'11'});
icons.push({'iconFilePath':'images/icons/12.png', 'iconValue':'12'});
icons.push({'iconFilePath':'images/icons/13.png', 'iconValue':'13'});
icons.push({'iconFilePath':'images/icons/14.png', 'iconValue':'14'});

iconSelect.refresh(icons);

};

</script>

</head>
<body>

<h2>Icon/Image Select: Nano Example (Javascript)</h2>

<div id="my-icon-select"></div>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<html>
<head>
<meta charset="UTF-8">
<title>Icon/Image Select: Vectoral Example (Javascript)</title>

<link rel="stylesheet" type="text/css" href="css/lib/control/iconselect.css" >
<script type="text/javascript" src="lib/control/iconselect.js"></script>

<script type="text/javascript" src="lib/iscroll.js"></script>

<script>

var iconSelect;

window.onload = function(){

iconSelect = new IconSelect("my-icon-select",
{'selectedIconWidth':23,
'selectedIconHeight':23,
'selectedBoxPadding':1,
'iconsWidth':48,
'iconsHeight':48,
'boxIconSpace':1,
'vectoralIconNumber':2,
'horizontalIconNumber':6});

var icons = [];
icons.push({'iconFilePath':'images/icons/1.png', 'iconValue':'1'});
icons.push({'iconFilePath':'images/icons/2.png', 'iconValue':'2'});
icons.push({'iconFilePath':'images/icons/3.png', 'iconValue':'3'});
icons.push({'iconFilePath':'images/icons/4.png', 'iconValue':'4'});
icons.push({'iconFilePath':'images/icons/5.png', 'iconValue':'5'});
icons.push({'iconFilePath':'images/icons/6.png', 'iconValue':'6'});
icons.push({'iconFilePath':'images/icons/7.png', 'iconValue':'7'});
icons.push({'iconFilePath':'images/icons/8.png', 'iconValue':'8'});
icons.push({'iconFilePath':'images/icons/9.png', 'iconValue':'9'});
icons.push({'iconFilePath':'images/icons/10.png', 'iconValue':'10'});
icons.push({'iconFilePath':'images/icons/11.png', 'iconValue':'11'});
icons.push({'iconFilePath':'images/icons/12.png', 'iconValue':'12'});
icons.push({'iconFilePath':'images/icons/13.png', 'iconValue':'13'});
icons.push({'iconFilePath':'images/icons/14.png', 'iconValue':'14'});

iconSelect.refresh(icons);

};

</script>

</head>
<body>

<h2>Icon/Image Select: Vectoral Example (Javascript)</h2>

<div id="my-icon-select"></div>

</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<html>
<head>
<meta charset="UTF-8">
<title>Icon/Image Select: Horizontal Example (Javascript)</title>

<link rel="stylesheet" type="text/css" href="css/lib/control/iconselect.css" >
<script type="text/javascript" src="lib/control/iconselect.js"></script>

<script type="text/javascript" src="lib/iscroll.js"></script>

<script>

var iconSelect;

window.onload = function(){

iconSelect = new IconSelect("my-icon-select",
{'selectedIconWidth':48,
'selectedIconHeight':48,
'selectedBoxPadding':5,
'iconsWidth':48,
'iconsHeight':48,
'boxIconSpace':3,
'vectoralIconNumber':8,
'horizontalIconNumber':1});

var icons = [];
icons.push({'iconFilePath':'images/icons/1.png', 'iconValue':'1'});
icons.push({'iconFilePath':'images/icons/2.png', 'iconValue':'2'});
icons.push({'iconFilePath':'images/icons/3.png', 'iconValue':'3'});
icons.push({'iconFilePath':'images/icons/4.png', 'iconValue':'4'});
icons.push({'iconFilePath':'images/icons/5.png', 'iconValue':'5'});
icons.push({'iconFilePath':'images/icons/6.png', 'iconValue':'6'});
icons.push({'iconFilePath':'images/icons/7.png', 'iconValue':'7'});
icons.push({'iconFilePath':'images/icons/8.png', 'iconValue':'8'});
icons.push({'iconFilePath':'images/icons/9.png', 'iconValue':'9'});
icons.push({'iconFilePath':'images/icons/10.png', 'iconValue':'10'});
icons.push({'iconFilePath':'images/icons/11.png', 'iconValue':'11'});
icons.push({'iconFilePath':'images/icons/12.png', 'iconValue':'12'});
icons.push({'iconFilePath':'images/icons/13.png', 'iconValue':'13'});
icons.push({'iconFilePath':'images/icons/14.png', 'iconValue':'14'});

iconSelect.refresh(icons);

};

</script>

</head>
<body>

<h2>Icon/Image Select: Horizontal Example (Javascript)</h2>

<div id="my-icon-select"></div>

</body>
</html>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit d4a6920

Please sign in to comment.