Skip to content
Snippets Groups Projects
Select Git revision
  • 37581eafb18f0d6fd0444c351d04f91425d9863d
  • master default protected
  • dev
  • appimage
  • fix_gitlab
  • fixappveyor
  • gitlab
  • fix_ci
  • fix_dbus_error
  • fix_ci_osx
  • sakia020
  • fix_travis#1105
  • feature/backend
  • check_uniq_node_by_endpoints
  • qt5.7
  • feature/agent_architecture
  • translations
  • pyqt5.6
  • qtwebengine
  • pyinstaller
  • landscape
  • 0.53.2
  • 0.53.1
  • 0.53.0
  • 0.52.0
  • 0.51.1
  • 0.51.0
  • 0.50.5
  • 0.50.4
  • 0.50.3
  • 0.50.2
  • 0.50.1
  • 0.50.0
  • 0.33.0rc7
  • 0.33.0rc6
  • 0.33.0rc5
  • 0.33.0rc4
  • 0.33.0rc3
  • 0.33.0rc2
  • 0.33.0rc1
  • 0.32.10post1
41 results

core-classes.pu

Blame
  • core-classes.pu 1.44 KiB
    @startuml
    
    package core {
    	class App {
    	-- Signals --
    	current_account_changed(str : account_name)
    	data_changed()
    	-- Slots --
    	-- Properties --
    	current_account
    	accounts
    	-- Methods --
    	}
    	App --* Account : accounts
    
    	class Account {
    	-- Signals --
    	wallets_changed(int : nb_wallets)
    	community_added(int : index)
    	community_removed(int : index)
    	data_changed()
    	-- Slots --
    	-- Properties --
    	communities
    	wallets
    	-- Methods --
    	}
    	Account "1" --* "*" Wallet
    	Account "1" --* "*" Community
    
    	class Wallet {
    		-- Signals --
    	money_received(Transfer)
    	money_sent(Transfer)
    	name_changed(str : new_name
    	data_changed()
    	-- Slots --
    	-- Properties --
    	transfers
    	-- Methods --
    	}
    	Wallet "1" --* "*" Transfer
    
    	class Transfer {
    	-- Signals --
    	state_changed(int : new_state)
    	-- Slots --
    	-- Properties --
    	-- Methods --
    	}
    
    	class Community {
    	-- Signals --
    	members_changed()
    	data_changed()
    	-- Slots --
    	-- Properties --
    	network
    	-- Methods --
    
    	}
    	App --> Identity
    	class Identity {
    		{static} _identities
    		{static} load(data : dict)
    		{static} lookup(search : str)
    	}
    
    }
    
    
    package net {
    	class Network {
    	-- Signals --
    	node_found(int : index)
    	node_removed(int : index)
    	block_found(int : block_number)
    	-- Slots --
    	-- Properties --
    	nodes
    	root_nodes
    	-- Methods --
    	}
    	Community "1" --* "1" Network
    	Network "1" --* "*" Node
    
    	class Node {
    	-- Signals --
    	changed()
    	-- Slots --
    	-- Properties --
    	endpoints
    	pubkey
    	uid
    	block
    	state
    	-- Methods --
    	}
    
    }
    @enduml