Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clean-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clean-and-itasks
clean-platform
Commits
f6be73cc
Commit
f6be73cc
authored
Oct 25, 2019
by
Mart Lubbers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove graphics.layout, remove qualified as
parent
f3a6e4bf
Pipeline
#32055
passed with stage
in 3 minutes and 10 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
45 deletions
+7
-45
src/libraries/OS-Independent/Graphics/Layout.dcl
src/libraries/OS-Independent/Graphics/Layout.dcl
+0
-39
src/libraries/OS-Independent/Graphics/Layout.icl
src/libraries/OS-Independent/Graphics/Layout.icl
+0
-1
src/libraries/OS-Independent/System/Socket.dcl
src/libraries/OS-Independent/System/Socket.dcl
+1
-1
src/libraries/OS-Independent/System/Socket.icl
src/libraries/OS-Independent/System/Socket.icl
+2
-1
src/libraries/OS-Posix/System/_Socket.icl
src/libraries/OS-Posix/System/_Socket.icl
+2
-1
src/libraries/OS-Windows/System/_Socket.icl
src/libraries/OS-Windows/System/_Socket.icl
+2
-1
tests/linux64/test.icl
tests/linux64/test.icl
+0
-1
No files found.
src/libraries/OS-Independent/Graphics/Layout.dcl
deleted
100644 → 0
View file @
f3a6e4bf
definition
module
Graphics
.
Layout
::
GridDimension
=
Rows
!
Int
|
Columns
!
Int
::
GridLayout
:==
(!
GridMajor
,
!
GridXLayout
,
!
GridYLayout
)
::
GridMajor
=
ColumnMajor
|
RowMajor
::
GridXLayout
=
LeftToRight
|
RightToLeft
::
GridYLayout
=
TopToBottom
|
BottomToTop
::
XAlign
=
AtLeft
|
AtMiddleX
|
AtRight
::
YAlign
=
AtTop
|
AtMiddleY
|
AtBottom
::
XYAlign
:==
(!
XAlign
,
!
YAlign
)
class
Layout
thing
~
size
~
offset
~
host
where
collage
::
[
offset
]
[
thing
m
]
(
host
m
)
->
thing
m
overlay
::
[
XYAlign
]
[
offset
]
[
thing
m
]
(
host
m
)
->
thing
m
beside
::
[
size
]
[
YAlign
]
[
offset
]
[
thing
m
]
(
host
m
)
->
thing
m
above
::
[
size
]
[
XAlign
]
[
offset
]
[
thing
m
]
(
host
m
)
->
thing
m
grid
::
GridDimension
GridLayout
[
size
]
[
size
]
[
XYAlign
]
[
offset
]
[
thing
m
]
(
host
m
)
->
thing
m
class
Fit
thing
~
dim
where
fitXY
::
dim
dim
(
thing
m
)
->
thing
m
fitX
::
dim
(
thing
m
)
->
thing
m
fitY
::
dim
(
thing
m
)
->
thing
m
class
DimRef
tag
~
unit
where
xdim
::
tag
->
unit
ydim
::
tag
->
unit
src/libraries/OS-Independent/Graphics/Layout.icl
deleted
100644 → 0
View file @
f3a6e4bf
implementation
module
Graphics
.
Layout
src/libraries/OS-Independent/System/Socket.dcl
View file @
f6be73cc
...
...
@@ -2,7 +2,7 @@ definition module System.Socket
from
StdOverloaded
import
class
toInt
from
Data
.
Error
import
::
MaybeError
,
::
MaybeErrorString
from
System
.
_Pointer
import
::
Pointer
(..)
from
System
.
_Pointer
import
::
Pointer
from
System
.
_Socket
import
::
Socket
from
System
.
OSError
import
::
MaybeOSError
,
::
OSError
,
::
OSErrorMessage
,
::
OSErrorCode
...
...
src/libraries/OS-Independent/System/Socket.icl
View file @
f6be73cc
implementation
module
System
.
Socket
import
StdEnv
import
System
.
_Socket
=>
qualified
socket
,
bind
,
listen
,
accept
,
close
,
connect
,
send
,
recv
,
hostToNetworkByteOrderLong
,
hostToNetworkByteOrderShort
,
networkToHostByteOrderShort
,
networkToHostByteOrderLong
import
qualified
System
.
_Socket
from
System
.
_Socket
import
::
Socket
,
SOCK_STREAM
,
SOCK_DGRAM
,
MSG_DONTROUTE
,
MSG_OOB
,
MSG_WAITALL
,
MSG_PEEK
import
System
.
OSError
instance
toInt
SocketType
where
...
...
src/libraries/OS-Posix/System/_Socket.icl
View file @
f6be73cc
...
...
@@ -5,7 +5,8 @@ import Data.Error
import
System
.
OSError
import
System
.
_Pointer
import
System
.
_Posix
import
System
.
Socket
=>
qualified
socket
,
bind
,
listen
,
accept
,
close
,
connect
,
send
,
recv
,
networkToHostByteOrderLong
,
networkToHostByteOrderShort
,
hostToNetworkByteOrderLong
,
hostToNetworkByteOrderShort
import
qualified
System
.
Socket
from
System
.
Socket
import
::
SocketType
(..),
class
SocketAddress
(..),
::
SendFlag
,
::
RecvFlag
,
instance
toInt
SendFlag
,
instance
toInt
RecvFlag
,
instance
toInt
SocketType
::
*
Socket
a
:==
Int
...
...
src/libraries/OS-Windows/System/_Socket.icl
View file @
f6be73cc
...
...
@@ -3,7 +3,8 @@ implementation module System._Socket
import
Data
.
Error
import
StdEnv
import
System
.
OSError
import
System
.
Socket
=>
qualified
socket
,
bind
,
listen
,
accept
,
close
,
connect
,
send
,
recv
,
networkToHostByteOrderLong
,
networkToHostByteOrderShort
,
hostToNetworkByteOrderLong
,
hostToNetworkByteOrderShort
import
qualified
System
.
Socket
from
System
.
Socket
import
::
SocketType
(..),
class
SocketAddress
(..),
::
SendFlag
,
::
RecvFlag
,
instance
toInt
SendFlag
,
instance
toInt
RecvFlag
,
instance
toInt
SocketType
import
System
.
_Pointer
import
System
.
_WinBase
...
...
tests/linux64/test.icl
View file @
f6be73cc
...
...
@@ -154,7 +154,6 @@ import qualified Database.SQL._MySQL
import
qualified
Database
.
SQL
.
_SQLite
import
qualified
Debug
.
Performance
import
qualified
Debug
.
Trace
//import qualified Graphics.Layout
import
qualified
Graphics
.
Scalable
.
Extensions
import
qualified
Graphics
.
Scalable
.
Image
import
qualified
Graphics
.
Scalable
.
Internal
.
Image`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment